BESSEL_Y0 — Bessel function of the second kind of order 0¶
- BESSEL_Y0(X)¶
BESSEL_Y0(X)computes the Bessel function of the second kind of order 0 ofX. This function is available under the nameBESY0as a GNU extension.- Parameters
X – The type shall be
REAL.- Returns
The return value is of type
REAL. It has the same kind asX.
Standard:Fortran 2008 and later
Class:Elemental function
Syntax:RESULT = BESSEL_Y0(X)
Example:program test_besy0 real(8) :: x = 0.0_8 x = bessel_y0(x) end program test_besy0
Specific names:Name
Argument
Return type
Standard
DBESY0(X)REAL(8) XREAL(8)GNU extension