utilities-clj.floating-point-comparison
Epsilon comparison of floating point numbers.
real<
(real< x y)
Determines whether the first real argument is less than the second one.
real<=
(real<= x y)
Determines whether the first real argument is less than or equal
to the second one.
real=
(real= x y)
Determines whether two real numbers (or vectors of real numbers)
are equal. Returns true if either absolute difference or relative
difference of x and y is smaller than epsilon.
## References
[1] http://floating-point-gui.de/
real>
(real> x y)
Determines whether the first real argument is greater than the second one.
real>=
(real>= x y)
Determines whether the first real argument is greater than or equal
to the second one.