mirror of
https://github.com/josdejong/mathjs.git
synced 2026-01-18 14:59:29 +00:00
58 lines
1.5 KiB
Markdown
58 lines
1.5 KiB
Markdown
<!-- Note: This file is automatically generated from source code comments. Changes made in this file will be overridden. -->
|
|
|
|
# Function compare
|
|
|
|
Compare two values. Returns 1 when x > y, -1 when x < y, and 0 when x == y.
|
|
|
|
x and y are considered equal when the relative difference between x and y
|
|
is smaller than the configured epsilon. The function cannot be used to
|
|
compare values smaller than approximately 2.22e-16.
|
|
|
|
For matrices, the function is evaluated element wise.
|
|
|
|
|
|
## Syntax
|
|
|
|
```js
|
|
math.compare(x, y)
|
|
```
|
|
|
|
### Parameters
|
|
|
|
Parameter | Type | Description
|
|
--------- | ---- | -----------
|
|
`x` | number | BigNumber | Fraction | Unit | string | Array | Matrix | First value to compare
|
|
`y` | number | BigNumber | Fraction | Unit | string | Array | Matrix | Second value to compare
|
|
|
|
### Returns
|
|
|
|
Type | Description
|
|
---- | -----------
|
|
number | BigNumber | Fraction | Array | Matrix | Returns the result of the comparison: 1, 0 or -1.
|
|
|
|
|
|
## Examples
|
|
|
|
```js
|
|
math.compare(6, 1); // returns 1
|
|
math.compare(2, 3); // returns -1
|
|
math.compare(7, 7); // returns 0
|
|
|
|
var a = math.unit('5 cm');
|
|
var b = math.unit('40 mm');
|
|
math.compare(a, b); // returns 1
|
|
|
|
math.compare(2, [1, 2, 3]); // returns [1, 0, -1]
|
|
```
|
|
|
|
|
|
## See also
|
|
|
|
[equal](equal.md),
|
|
[unequal](unequal.md),
|
|
[smaller](smaller.md),
|
|
[smallerEq](smallerEq.md),
|
|
[larger](larger.md),
|
|
[largerEq](largerEq.md),
|
|
[compareNatural](compareNatural.md)
|