bessel_yn(n, x) computes the Bessel function of the second kind of order n of x.
If both arguments are arrays, their ranks and shapes shall conform.
Fortran 2008 and later
Elemental function?
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.The return value is a scalar of type 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