Next: BIT_SIZE, Previous: BESSEL_Y1, Up: Intrinsic Procedures
BESSEL_YN
— Bessel function of the second kindBESSEL_YN(N, X)
computes the Bessel function of the second kind of
order N of X. This function is available under the name
BESYN
as a GNU extension.
If both arguments are arrays, their ranks and shapes shall conform.
RESULT = BESSEL_YN(N, X)
N | Shall be a scalar or an array of type INTEGER .
|
X | Shall be a scalar or an array of type REAL .
|
REAL
. It has the same
kind as X.
program test_besyn real(8) :: x = 1.0_8 x = bessel_yn(5,x) end program test_besyn
Name | Argument | Return type | Standard
|
DBESYN(N,X) | INTEGER N | REAL(8) | GNU extension
|
REAL(8) X |
|