Next: Structure/List Element, Previous: Binary Relationals, Up: Operators [Contents][Index]
Binary bounding operators are defined for scalar
s (both real and
complex) and array
s (both real and complex). They restrict their
operands to a range of values. The following two operators are
available:
x < y
returns the smaller (i.e. closer to -Infinity, for
real numbers) of x
and y
.
x > y
returns the larger (i.e. closer to +Infinity, for real
numbers) of x
and y
.
Comparison of complex numbers is based on their projection on 1+i; see Complex Numbers.
So, to restrict all elements of an array x
to between the values
of 20 and 33, use x > 20 < 33
.