Computes the Bessel function of the second kind for vector elements.
vhY0( n, a, y ); vhY0I(n, a, inca, y, incy); vmhY0( n, a, y, mode ); vmhY0I(n, a, inca, y, incy, mode); vsY0( n, a, y ); vsY0I(n, a, inca, y, incy); vmsY0( n, a, y, mode ); vmsY0I(n, a, inca, y, incy, mode); vdY0( n, a, y ); vdY0I(n, a, inca, y, incy); vmdY0( n, a, y, mode ); vmdY0I(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 _Float16* for vhY0, vmhY0 const float* for vsY0, vmsY0 const double* for vdY0, vmdY0 |
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 |
_Float16* for vhY0, vmhY0 float* for vsY0, vmsY0 double* for vdY0, vmdY0 |
Pointer to an array that contains the output vector y. |
The Y0 function computes the Bessel function of the second kind of order 0 for elements of the input vector a and writes them to the output vector y.
| Argument | Result | VM Error Status | Exception |
|---|---|---|---|
| +0 | -∞ | VML_STATUS_SING | ZERODIVIDE |
| -0 | -∞ | VML_STATUS_SING | ZERODIVIDE |
| +∞ | +0 | ||
| x < 0 (including -∞) | SNAN | VML_STATUS_ERRDOM | INVALID |
| QNAN | QNAN | ||
| SNAN | QNAN | INVALID |