cbrt#

static vectorious.cbrt(x)#

Returns the cube root of each element of x.

Arguments:
Returns:

NDArray

Examples:

import { cbrt } from 'vectorious/core/cbrt';

cbrt([1, 8, 27]); // => array([1, 2, 3])