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

528 B

title description menu weight
math.cbrt() function The math.cbrt() function returns the cube root of `x`.
v2_0_ref
name parent
math.cbrt Math
301

The math.cbrt() function returns the cube root of x.

Output data type: Float

import "math"

math.cbrt(x: 1728.0)

// Returns 12.0

Parameters

x

The value used in the operation.

Data type: Float

Special cases

math.cbrt(±0)   // Returns ±0
math.cbrt(±Inf) // Returns ±Inf
math.cbrt(NaN)  // Returns NaN