BESSEL_Y0(3) - [MATHEMATICS] Bessel function of the second kind of order 0
result = bessel_y0(x)
elemental real(kind=KIND) function bessel_y0(x)real(kind=KIND),intent(in) :: x
o KIND may be any supported real KIND. o the result characteristics (type, kind) are the same as X
BESSEL_Y0(3) computes the Bessel function of the second kind of order 0 of X.
o X : The type shall be real. Its value shall be greater than zero.
The return value is of type real. It has the same kind as X.
Sample program:
program demo_bessel_y0 use, intrinsic :: iso_fortran_env, only : real32, real64, real128 implicit none real(kind=real64) :: x = 0.0_real64 x = bessel_y0(x) write(*,*)x end program demo_bessel_y0Results:
> -Infinity
Fortran 2008
BESSEL_J0(3), BESSEL_J1(3), BESSEL_JN(3), BESSEL_Y1(3), BESSEL_YN(3)
Fortran intrinsic descriptions
Nemo Release 3.1 | bessel_y0 (3fortran) | November 02, 2024 |