Next: BESJ1, Previous: ATANH, Up: Intrinsic Procedures
BESJ0 — Bessel function of the first kind of order 0BESJ0(X) computes the Bessel function of the first kind of order 0
of X.
RESULT = BESJ0(X)
| X | The type shall be REAL(*), and it shall be scalar.
|
REAL(*) and it lies in the
range - 0.4027... \leq Bessel (0,x) \leq 1.
program test_besj0
real(8) :: x = 0.0_8
x = besj0(x)
end program test_besj0
| Name | Argument | Return type | Standard
|
DBESJ0(X) | REAL(8) X | REAL(8) | GNU extension
|