bessel_y1(x)
computes the Bessel function of the second kind of order 1 of x
.
Fortran 2008 and later
result = bessel_y1(x)
x
- The type shall be real
.The return value is real
. It has the same kind as x
.
program test_besy1
real(8) :: x = 1.0_8
x = bessel_y1(x)
end program test_besy1
bessel_j0, bessel_j1, bessel_jn, bessel_y0, bessel_yn