fuzzyGreaterThan(a, b, epsilon) → {boolean}
a
is fuzzyGreaterThan b
if it is more than b - epsilon.
Parameters
Name | Type | Argument | Default | Description |
---|---|---|---|---|
a | number | The first number to compare. | ||
b | number | The second number to compare. | ||
epsilon | number | <optional> | 0.0001 | The epsilon (a small value used in the calculation) |
Returns
boolean -
True if a>b+epsilon
- Source code: math/Math.js (Line 74)
Please login to continue.