klyn.math.Math.cbrt
method
public static cbrt<NUMBER_TYPE extends AbstractNumber>(values as NDArray<NUMBER_TYPE>) as NDArray<Double>:
Description
Returns the element-wise cube root of an array. This overload delegates to the native vectorized NDArray kernel.
import klyn.math

values = NDArray<Double>.fromList([1.0, 8.0, 27.0])
print(Math.cbrt(values))