Check whether a
is fuzzily greater than b
.
a
is fuzzily greater than b
if it is more than b - epsilon
.
name | type | arguments | Default | description |
---|---|---|---|---|
a | number |
The first value. |
||
b | number |
The second value. |
||
epsilon | number | <optional> | 0.0001 |
The epsilon. |
true
if a
is fuzzily greater than than b
, otherwise false
.