Float abs(Float x)
Arguments
x: The floating-point variable to find the magnitude of
Usage
Return the magnitude of a floating-point number.
a = abs(5.7); // 5.7
a = abs(-11.2); // 11.2
x: The floating-point variable to find the magnitude ofReturn the magnitude of a floating-point number.
a = abs(5.7); // 5.7
a = abs(-11.2); // 11.2