Visible to Intel only — GUID: GUID-1B072DE3-B5C1-4309-B351-2B014A6A7371
Visible to Intel only — GUID: GUID-1B072DE3-B5C1-4309-B351-2B014A6A7371
v?Tan
Computes tangent of vector elements.
Syntax
vhTan( n, a, y );
vhTanI(n, a, inca, y, incy);
vmhTan( n, a, y, mode );
vmhTanI(n, a, inca, y, incy, mode);
vsTan( n, a, y );
vsTanI(n, a, inca, y, incy);
vmsTan( n, a, y, mode );
vmsTanI(n, a, inca, y, incy, mode);
vdTan( n, a, y );
vdTanI(n, a, inca, y, incy);
vmdTan( n, a, y, mode );
vmdTanI(n, a, inca, y, incy, mode);
vcTan( n, a, y );
vcTanI(n, a, inca, y, incy);
vmcTan( n, a, y, mode );
vmcTanI(n, a, inca, y, incy, mode);
vzTan( n, a, y );
vzTanI(n, a, inca, y, incy);
vmzTan( n, a, y, mode );
vmzTanI(n, a, inca, y, incy, mode);
Include Files
- mkl.h
Input Parameters
Name |
Type |
Description |
---|---|---|
n |
const MKL_INT |
Specifies the number of elements to be calculated. |
a |
const _Float16* for vhTan, vmhTan const float* for vsTan, vmsTan const double* for vdTan, vmdTan const MKL_Complex8* for vcTan, vmcTan const MKL_Complex16* for vzTan, vmzTan |
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. |
Output Parameters
Name |
Type |
Description |
---|---|---|
y |
_Float16* for vhTan, vmhTan float* for vsTan, vmsTan double* for vdTan, vmdTan MKL_Complex8* for vcTan, vmcTan MKL_Complex16* for vzTan, vmzTan |
Pointer to an array that contains the output vector y. |
Description
The v?Tan function computes tangent of vector elements.
Note that arguments abs(a[i]) ≤ 213 and abs(a[i]) ≤ 216 for single and double precisions respectively are called fast computational path. These are trigonometric function arguments for which VM provides the best possible performance. Avoid arguments that do not belong to the fast computational path in the VM High Accuracy (HA) and Low Accuracy (LA) functions. Alternatively, you can use VM Enhanced Performance (EP) functions that are fast on the entire function domain. However, these functions provide less accuracy.
Argument | Result | VM Error Status | Exception |
---|---|---|---|
+0 | +0 | ||
-0 | -0 | ||
+∞ | QNAN | VML_STATUS_ERRDOM | INVALID |
-∞ | QNAN | VML_STATUS_ERRDOM | INVALID |
QNAN | QNAN | ||
SNAN | QNAN | INVALID |
Specifications for special values of the complex functions are defined according to the following formula
Tan(z) = -i*Tanh(i*z).
Product and Performance Information |
---|
Performance varies by use, configuration and other factors. Learn more at www.Intel.com/PerformanceIndex. Notice revision #20201201 |