1 |
|
2 |
|
3 | # Function smallerEq
|
4 |
|
5 | Test whether value x is smaller or equal to y.
|
6 |
|
7 | The function returns true when x is smaller than y or the relative
|
8 | difference between x and y is smaller than the configured epsilon. The
|
9 | function cannot be used to compare values smaller than approximately 2.22e-16.
|
10 |
|
11 | For matrices, the function is evaluated element wise.
|
12 | Strings are compared by their numerical value.
|
13 |
|
14 |
|
15 | ## Syntax
|
16 |
|
17 | ```js
|
18 | math.smallerEq(x, y)
|
19 | ```
|
20 |
|
21 | ### Parameters
|
22 |
|
23 | Parameter | Type | Description
|
24 | --------- | ---- | -----------
|
25 | `x` | number | BigNumber | Fraction | boolean | Unit | string | Array | Matrix | First value to compare
|
26 | `y` | number | BigNumber | Fraction | boolean | Unit | string | Array | Matrix | Second value to compare
|
27 |
|
28 | ### Returns
|
29 |
|
30 | Type | Description
|
31 | ---- | -----------
|
32 | boolean | Array | Matrix | Returns true when the x is smaller than y, else returns false
|
33 |
|
34 |
|
35 | ## Examples
|
36 |
|
37 | ```js
|
38 | math.smaller(1 + 2, 3) // returns false
|
39 | math.smallerEq(1 + 2, 3) // returns true
|
40 | ```
|
41 |
|
42 |
|
43 | ## See also
|
44 |
|
45 | [equal](equal.md),
|
46 | [unequal](unequal.md),
|
47 | [smaller](smaller.md),
|
48 | [larger](larger.md),
|
49 | [largerEq](largerEq.md),
|
50 | [compare](compare.md)
|