Visible to Intel only — GUID: GUID-58F562CA-EEC3-443E-B0C2-A6C236265C2F
Visible to Intel only — GUID: GUID-58F562CA-EEC3-443E-B0C2-A6C236265C2F
v?Cosd
Computes the cosine of vector elements multiplied by π/180.
vsCosd (n, a, y);
vsCosdI(n, a, inca, y, incy);
vmsCosd (n, a, y, mode);
vmsCosdI(n, a, inca, y, incy, mode);
vdCosd (n, a, y);
vdCosdI(n, a, inca, y, incy);
vmdCosd (n, a, y, mode);
vmdCosdI(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 vsCosd const float* for vmsCosd const double* for vdCosd const double* for vmdCosd |
Pointer to the array containing the input vector a. |
inca, incy |
const MKL_INT |
Specifies increments for the elements of a and y. |
mode |
const MKL_INT64 |
Overrides the global VM mode setting for this function call. See vmlSetMode for possible values and their description. |
Name |
Type |
Description |
---|---|---|
y |
float* for vsCosd float* for vmsCosd double* for vdCosd double* for vmdCosd |
Pointer to an array containing the output vector y. |
The v?Cosd function computes the cosine of vector elements multiplied by π/180. For an argument x, the function computes cos(π*x/180).
Argument | Result | VM Error Status | Exception |
---|---|---|---|
+0 | +1 | ||
-0 | +1 | ||
±∞ | QNAN | VML_STATUS_ERRDOM | INVALID |
QNAN | QNAN | ||
SNAN | QNAN | INVALID |
If arguments abs(ai) ≤ 224 for single precision or abs(ai ) ≤ 252 for double precision, they belong to the fast computational path: arguments for which VM provides the best possible performance. Avoid arguments with do not belong to the fast computational path in VM High Accuracy (HA) or Low Accuracy (LA) functions. For arguments which do not belong to the fast computational path you can use VM Enhanced Performance (EP) functions, which are fast on the entire function domain. However, these functions provide lower accuracy.