UNPKG

mathjs

Version:

Math.js is an extensive math library for JavaScript and Node.js. It features a flexible expression parser with support for symbolic computation, comes with a large set of built-in functions and constants, and offers an integrated solution to work with dif

62 lines (42 loc) 1.71 kB
<!-- 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. Strings are compared by their numerical value. ## Syntax ```js math.compare(x, y) ``` ### Parameters Parameter | Type | Description --------- | ---- | ----------- `x` | number &#124; BigNumber &#124; Fraction &#124; Unit &#124; string &#124; Array &#124; Matrix | First value to compare `y` | number &#124; BigNumber &#124; Fraction &#124; Unit &#124; string &#124; Array &#124; Matrix | Second value to compare ### Returns Type | Description ---- | ----------- number &#124; BigNumber &#124; Fraction &#124; Array &#124; Matrix | Returns the result of the comparison: 1 when x > y, -1 when x < y, and 0 when x == y. ## Examples ```js math.compare(6, 1) // returns 1 math.compare(2, 3) // returns -1 math.compare(7, 7) // returns 0 math.compare('10', '2') // returns 1 math.compare('1000', '1e3') // returns 0 const a = math.unit('5 cm') const 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), [compareText](compareText.md)