Computes a cube root of vector elements.
vhCbrt( n, a, y );
vhCbrtI(n, a, inca, y, incy);
vmhCbrt( n, a, y, mode );
vmhCbrtI(n, a, inca, y, incy, mode);
vsCbrt( n, a, y );
vsCbrtI(n, a, inca, y, incy);
vmsCbrt( n, a, y, mode );
vmsCbrtI(n, a, inca, y, incy, mode);
vdCbrt( n, a, y );
vdCbrtI(n, a, inca, y, incy);
vmdCbrt( n, a, y, mode );
vmdCbrtI(n, a, inca, y, incy, mode);
Name |
Type |
Description |
|---|---|---|
n |
const MKL_INT |
Specifies the number of elements to be calculated. |
a |
const _Float16* for vhCbrt, vmhCbrt const float* for vsCbrt, vmsCbrt const double* for vdCbrt, vmdCbrt |
Pointer to an array that contains the input vector a. |
inca, incy |
const MKL_INT |
Specifies increments for the elements of a and y. |
mode |
const MKL_INT64 |
Overrides global VM mode setting for this function call. See vmlSetMode for possible values and their description. |
Name |
Type |
Description |
|---|---|---|
y |
_Float16* for vhCbrt, vmhCbrt float* for vsCbrt, vmsCbrt double* for vdCbrt, vmdCbrt |
Pointer to an array that contains the output vector y. |
The v?Cbrt function computes a cube root of vector elements.
| Argument | Result | Exception |
|---|---|---|
| +0 | +0 | |
| -0 | -0 | |
| +∞ | +∞ | |
| -∞ | -∞ | |
| QNAN | QNAN | |
| SNAN | QNAN | INVALID |