Returns the absolute (non-negative) value of a number.
Function
result = abs(input)
Arguments
Argument | Data Type |
input | numeric |
---|---|
result | numeric |
Comments
Absolute value function that converts negative numbers to positive.
Examples
result = abs(-35) /* result = 35 */