Visible to Intel only — GUID: GUID-ED81AAE2-013A-4D76-8E69-DE4348675443
Visible to Intel only — GUID: GUID-ED81AAE2-013A-4D76-8E69-DE4348675443
v?InvCbrt
Computes an inverse cube root of vector elements.
vsInvCbrt( n, a, y );
vsInvCbrtI(n, a, inca, y, incy);
vmsInvCbrt( n, a, y, mode );
vmsInvCbrtI(n, a, inca, y, incy, mode);
vdInvCbrt( n, a, y );
vdInvCbrtI(n, a, inca, y, incy);
vmdInvCbrt( n, a, y, mode );
vmdInvCbrtI(n, a, inca, y, incy, mode);
- mkl.h
Name |
Type |
Description |
---|---|---|
n |
const MKL_INT |
Specifies the number of elements to be calculated. |
a |
const float* for vsInvCbrt, vmsInvCbrt const double* for vdInvCbrt, vmdInvCbrt |
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 |
float* for vsInvCbrt, vmsInvCbrt double* for vdInvCbrt, vmdInvCbrt |
Pointer to an array that contains the output vector y. |
The v?InvCbrt function computes an inverse cube root of vector elements.
Argument | Result | VM Error Status | Exception |
---|---|---|---|
+0 | +∞ | VML_STATUS_SING | ZERODIVIDE |
-0 | -∞ | VML_STATUS_SING | ZERODIVIDE |
+∞ | +0 | ||
-∞ | -0 | ||
QNAN | QNAN | ||
SNAN | QNAN | INVALID |