Visible to Intel only — GUID: GUID-3E7F9BE0-A1D0-44CD-8F02-50AAC3BD8250
Visible to Intel only — GUID: GUID-3E7F9BE0-A1D0-44CD-8F02-50AAC3BD8250
v?Pow3o2
Computes the square root of the cube of each vector element.
vsPow3o2( n, a, y );
vsPow3o2I(n, a, inca, y, incy);
vmsPow3o2( n, a, y, mode );
vmsPow3o2I(n, a, inca, y, incy, mode);
vdPow3o2( n, a, y );
vdPow3o2I(n, a, inca, y, incy);
vmdPow3o2( n, a, y, mode );
vmdPow3o2I(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 vsPow3o2, vmsPow3o2 const double* for vdPow3o2, vmdPow3o2 |
Pointers to arrays that contain 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. |
Data Type | Threshold Limitations on Input Parameters |
---|---|
single precision | abs(a[i]) < ( FLT_MAX )2/3 |
double precision | abs(a[i]) < ( DBL_MAX )2/3 |
Name |
Type |
Description |
---|---|---|
y |
float* for vsPow3o2, vmsPow3o2 double* for vdPow3o2, vmdPow3o2 |
Pointer to an array that contains the output vector y. |
The v?Pow3o2 function computes the square root of the cube of each vector element.
Argument | Result | VM Error Status | Exception |
---|---|---|---|
X < +0 | QNAN | VML_STATUS_ERRDOM | INVALID |
+0 | +0 | ||
-0 | -0 | ||
-∞ | QNAN | VML_STATUS_ERRDOM | INVALID |
+∞ | +∞ | ||
QNAN | QNAN | ||
SNAN | QNAN | INVALID |