docs-v2/content/v2.0/reference/flux/functions/math/abs.md

503 B

title description menu weight
math.abs() function The math.abs() function returns the absolute value of `x`.
v2_0_ref
name parent
math.abs Math
301

The math.abs() function returns the absolute value of x.

Output data type: Float

import "math"

math.abs(x: -1.22)

// Returns 1.22

Parameters

x

The value used in the operation.

Data type: Float

Special cases

math.abs(x: ±Inf) // Returns +Inf
math.abs(x: NaN)  // Returns NaN