home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Open 13
/
pcopen13.iso
/
Zip
/
SM34A.ZIP
/
LIBRARY
/
ISLARGER.LI
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1993-10-16
|
190 b
|
7 lines
# islarger(a,b) gives 1 if a is larger than b, 0 otherwise. It is extent
# of a > b.
# e.g. islarger(1+i, 1-i) gives 1
# See also: isless, >.
islarger(a_, b_) := issame(sign(a-b),1)