Fortran Wiki
bessel_y0

Description

bessel_y0(x) computes the Bessel function of the second kind of order 0 of x.

Standard

Fortran 2008 and later

Class

Elemental function

Syntax

result = bessel_y0(x)

Arguments

  • x - The type shall be real.

Return value

The return value is of type real. It has the same kind as x.

Example

program test_besy0
  real(8) :: x = 0.0_8
  x = bessel_y0(x)
end program test_besy0

See also

bessel_j0, bessel_j1, bessel_jn, bessel_y1, bessel_yn

category: intrinsics