abs
one of
the documented procedures
in this installation of the ACS
Usage:
abs
x
What it does:
returns the absolute value of x
Defined in:
/web/philip/tcl/ad-functional.tcl
Source code:
expr $x<0 ? -$x : $x
philg@mit.edu