Liking cljdoc? Tell your friends :D

utilities-clj.floating-point-comparison

Epsilon comparison of floating point numbers.

Epsilon comparison of floating point numbers.
raw docstring

real<clj

(real< x y)

Determines whether the first real argument is less than the second one.

Determines whether the first real argument is less than the second one.
sourceraw docstring

real<=clj

(real<= x y)

Determines whether the first real argument is less than or equal to the second one.

Determines whether the first real argument is less than or equal
to the second one.
sourceraw docstring

real=clj

(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/
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/
sourceraw docstring

real>clj

(real> x y)

Determines whether the first real argument is greater than the second one.

Determines whether the first real argument is greater than the second one.
sourceraw docstring

real>=clj

(real>= x y)

Determines whether the first real argument is greater than or equal to the second one.

Determines whether the first real argument is greater than or equal
to the second one.
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close