|
__device__ float ynf |
( |
int |
n, |
|
|
float |
x | |
|
) |
| | |
Calculate the value of the Bessel function of the second kind of order n for the input argument x , .
- Returns:
- Returns the value of the Bessel function of the second kind of order
n .
- ynf(
n , x ) returns NaN for n < 0. - ynf(
n , 0) returns . - ynf(
n , x ) returns NaN for x < 0. - ynf(
n , ) returns +0. - ynf(
n , NaN) returns NaN.
- Note:
- For accuracy information for this function see the CUDA C Programming Guide, Appendix C, Table C-1.
|