BESSEL_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 N and X are arrays, their ranks and shapes shall conform. 
BESSEL_YN(N1, N2, X) returns an array with the Bessel functions of the first kind of the orders N1 to N2. 
Fortran 2008 and later, negative N is allowed as GNU extension
Elemental function, except for the transformational function BESSEL_YN(N1, N2, X) 
| RESULT = BESSEL_YN(N, X) | 
| RESULT = BESSEL_YN(N1, N2, X) | 
| N | Shall be a scalar or an array of type INTEGER. | 
| N1 | Shall be a non-negative scalar of type INTEGER. | 
| N2 | Shall be a non-negative scalar of type INTEGER. | 
| X | Shall be a scalar or an array of type REAL; forBESSEL_YN(N1, N2, X)it shall be scalar. | 
The return value is a scalar of type REAL. It has the same kind as X. 
The transformational function uses a recurrence algorithm which might, for some values of X, lead to different results than calls to the elemental function.
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 | 
Next: BGE, Previous: BESSEL_Y1, Up: Intrinsic Procedures [Contents][Index]
    © Free Software Foundation
Licensed under the GNU Free Documentation License, Version 1.3.
    https://gcc.gnu.org/onlinedocs/gcc-10.2.0/gfortran/BESSEL_005fYN.html