simple-squiggle

A restricted subset of Squiggle
Log | Files | Refs | README

largerEq.md (1390B)


      1 <!-- Note: This file is automatically generated from source code comments. Changes made in this file will be overridden. -->
      2 
      3 # Function largerEq
      4 
      5 Test whether value x is larger or equal to y.
      6 
      7 The function returns true when x is larger 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.largerEq(x, y)
     19 ```
     20 
     21 ### Parameters
     22 
     23 Parameter | Type | Description
     24 --------- | ---- | -----------
     25 `x` | number &#124; BigNumber &#124; Fraction &#124; boolean &#124; Unit &#124; string &#124; Array &#124; Matrix | First value to compare
     26 `y` | number &#124; BigNumber &#124; Fraction &#124; boolean &#124; Unit &#124; string &#124; Array &#124; Matrix | Second value to compare
     27 
     28 ### Returns
     29 
     30 Type | Description
     31 ---- | -----------
     32 boolean &#124; Array &#124; Matrix | Returns true when the x is larger or equal to y, else returns false
     33 
     34 
     35 ### Throws
     36 
     37 Type | Description
     38 ---- | -----------
     39 
     40 
     41 ## Examples
     42 
     43 ```js
     44 math.larger(2, 1 + 1)         // returns false
     45 math.largerEq(2, 1 + 1)       // returns true
     46 ```
     47 
     48 
     49 ## See also
     50 
     51 [equal](equal.md),
     52 [unequal](unequal.md),
     53 [smaller](smaller.md),
     54 [smallerEq](smallerEq.md),
     55 [larger](larger.md),
     56 [compare](compare.md)