home *** CD-ROM | disk | FTP | other *** search
/ PC Open 13 / pcopen13.iso / Zip / SM34A.ZIP / KEYWORD / ISLESS.KEY < prev    next >
Encoding:
Text File  |  1993-11-07  |  431 b   |  9 lines

  1. * isless                                              external
  2. isless(a,b) gives 1 if a is less than b, or 0 otherwise. It is extent
  3. of operator <. It can compare 2 complex number, but the operator < cannot.
  4. See also: iscomplex, iseven, isfree, isinteger, islarger, isless, islist,
  5. isodd, isreal, isratio, issame, isnumber.
  6. e.g.
  7. IN:  isless(1+i, 1-i)           # is 1+i less than 1-i ?
  8. OUT: 0                          # no
  9.