klyn.math.NDArray.cbrt
method
public native cbrt() as NDArray<Double>
Description

Returns the element-wise cube root.

The result is materialized as NDArray<Double>.

a = NDArray<Int>.fromList([1, 8, 27])
print(a.cbrt())  # [1.0, 2.0, 3.0]