Difference between revisions of "Abs"
From SCAR Divi Manual
Line 23: | Line 23: | ||
==See Also== | ==See Also== | ||
− | *[[ | + | *[[IAbs]] |
[[Category:Functions]] | [[Category:Functions]] | ||
[[Category:Math Functions]] | [[Category:Math Functions]] |
Revision as of 09:40, 28 June 2011
Definition
function Abs(e: Extended): Extended;
Availability
SCAR Divi 3.00 > Current
Description
This function determines the absolute value of the extended floating point value e which is passed as an argument to the function.
Example
begin WriteLn(Abs(1.1)); WriteLn(Abs(-1.1)); end.
Output:
1,1 1,1