simple-squiggle/node_modules/mathjs/docs/reference/functions/largerEq.md

1.4 KiB

Function largerEq

Test whether value x is larger or equal to y.

The function returns true when x is larger than y or 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

math.largerEq(x, y)

Parameters

Parameter Type Description
x number | BigNumber | Fraction | boolean | Unit | string | Array | Matrix First value to compare
y number | BigNumber | Fraction | boolean | Unit | string | Array | Matrix Second value to compare

Returns

Type Description
boolean | Array | Matrix Returns true when the x is larger or equal to y, else returns false

Throws

Type Description

Examples

math.larger(2, 1 + 1)         // returns false
math.largerEq(2, 1 + 1)       // returns true

See also

equal, unequal, smaller, smallerEq, larger, compare