utilities.floating-point-comparison

double<

(double< x y)
Determines whether the first double argument is less than the second one.
   x: Double number value.
   y: Double number value.
returns: True if the first double number is less than the second one.
         Otherwise, false.

double<=

(double<= x y)
Determines whether the first double argument is less than or equal to the second one.
   x: Double number value.
   y: Double number value.
returns: True if the first double number is less than or
         equal to the second one. Otherwise, false.

double=

(double= x y)
Determines whether two double numbers (or vectors of double numbers) are equal.
   x: A vector of double numbers or single value.
   y: A vector of double numbers or single value.
returns: True if the specified double numbers (or vectors of double numbers) are equal.
         Otherwise, false.

double>

(double> x y)
Determines whether the first double argument is greater than the second one.
   x: Double number value.
   y: Double number value.
returns: True if the first double number is greater than the second one.
         Otherwise, false.

double>=

(double>= x y)
Determines whether the first double argument is greater than or equal to the second one.
   x: Double number value.
   y: Double number value.
returns: True if the first double number is greater than or
         equal to the second one. Otherwise, false.