Intel® Math Kernel Library 2019 Developer Reference - C
Performs element by element squaring of the vector.
vsSqr( n, a, y );
vmsSqr( n, a, y, mode );
vdSqr( n, a, y );
vmdSqr( n, a, y, mode );
Name |
Type |
Description |
|---|---|---|
n |
const MKL_INT |
Specifies the number of elements to be calculated. |
a |
const float* for vsSqr, vmsSqr const double* for vdSqr, vmdSqr |
Pointer to an array that contains the input vector a. |
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 vsSqr, vmsSqr double* for vdSqr, vmdSqr |
Pointer to an array that contains the output vector y. |
The v?Sqr function performs element by element squaring of the vector.
| Argument | Result | Exception |
|---|---|---|
| +0 | +0 | |
| -0 | +0 | |
| +∞ | +∞ | |
| -∞ | +∞ | |
| QNAN | QNAN | |
| SNAN | QNAN | INVALID |