e1 op e2
The comparison operators are:
OPERATOR MEANING > greater than < less than >= greater than or equal to <= less than or equal to == equal to != not equal to
These are members of the Ops group of generic functions.
For complex data op orders first on the real part, then on the imaginary part if necessary. For character data, ordering is by the ASCII character set.
See section 5.6 of Becker, Chambers and Wilks for the rules for dealing with operands with attributes.
a > b # true when a greater than bx[x > 100] # all x values larger than 100
state == "Wyoming"