Syntax
ABS(A1)
Arguments
Accepts one argument, which may be a scalar value or an array.
Result
If the argument is a scalar value, the result is also a scalar value.
If the argument is an array, the result is an array.
Description
Each element of the result is equal to the absolute value of the corresponding element of the input argument.
Example 1:
Expression: ABS(arg1)
arg1 | -3 | 10 | 4 | -7 | -12 |
result | 3 | 10 | 4 | 7 | 12 |