math.cbrt() function
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