ABS

This command will return the positive equivalent of a value.

  Syntax
Return Float=ABS(Value)
  Parameters
Value
Float
This value is a float number such as 0.5

  Returns

This value is a float number such as 0.5

  Description

The value can be a real or integer number. The return value can be a real or integer number.

  Example Code
print abs(1.23)    :` 1.23
print int(1.23) :` 1
print floor(1.23) :` 1
print ceil(1.23) :` 2
print
print abs(-1.23) :` 1.23
print int(-1.23) :` -1
print floor(-1.23) :` -2
print ceil(-1.23) :` -1
print
wait key
  See also

CORE Commands Menu
Index