BESSEL_Y0(X)
computes the Bessel function of the second kind of order 0 of X. This function is available under the name BESY0
as a GNU extension.
Fortran 2008 and later
Elemental function
RESULT = BESSEL_Y0(X)
X | The type shall be REAL . |
The return value is of type REAL
. It has the same kind as X.
program test_besy0 real(8) :: x = 0.0_8 x = bessel_y0(x) end program test_besy0
Name | Argument | Return type | Standard |
DBESY0(X) |
REAL(8) X |
REAL(8) |
GNU extension |
© Free Software Foundation
Licensed under the GNU Free Documentation License, Version 1.3.
https://gcc.gnu.org/onlinedocs/gcc-7.2.0/gfortran/BESSEL_005fY0.html