Next: BESSEL_YN, Previous: BESSEL_Y0, Up: Intrinsic Procedures
BESSEL_Y1 — Bessel function of the second kind of order 1BESSEL_Y1(X) computes the Bessel function of the second kind of
order 1 of X. This function is available under the name
BESY1 as a GNU extension.
RESULT = BESSEL_Y1(X)
| X | The type shall be REAL, and it shall be scalar.
|
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
| Name | Argument | Return type | Standard
|
DBESY1(X) | REAL(8) X | REAL(8) | GNU extension
|