.BG
.VE $Header: /usr3/s/current/s/.help/RCS/compare,v 1.2 83/12/30 19:26:24 rab Exp $
.FN compare
.FN !=
.FN <
.FN <=
.FN ==
.FN >
.FN >=
.TL
<   <=   >   >=   ==   !=  : Comparison Operators
.CS
expr1 op expr2
.PP
.AG expri
numeric structure.
.RT
vector structure with FALSE or TRUE in each element
according to the truth of the element-wise compare of the operands.
For vector operands, the value is as long as the longer of
`expr1' and `expr2'.  For time-series operands, the time
domain of the result is the intersection of the domains
of the operands.
.PP
See also `xor' for exclusive-or function.
.EX
a>b      # true when `a' greater than `b'

x[x>100]      # all `x' with values larger than 100

state=="Wyoming"   # TRUE or FALSE
.KW builtin
.KW logic
.KW boolean
.KW math
.WR
