This function evaluates the Kelvin function of the first kind, ber, of order zero.
BER0 — Function value. (Output)
X — Argument for
which the function value is desired. (Input)
ABS(X) must be less than
119.
Generic: BER0 (X)
Specific: The specific interface names are S_BER0 and D_BER0.
Single: BER0 (X)
Double: The double precision name is DBER0.
The Kelvin function ber0(x) is defined to be ℜJ0(xe3πi∕4). The Bessel function J0(x) is defined in BSJ0. Function BER0 is based on the work of Burgoyne (1963).
In this example, ber0(0.4) is computed and printed.
USE BER0_INT
USE UMACH_INT
IMPLICIT NONE
! Declare variables
INTEGER NOUT
REAL VALUE, X
! Compute
X = 0.4
VALUE = BER0(X)
! Print the results
CALL UMACH (2, NOUT)
WRITE (NOUT,99999) X, VALUE
99999 FORMAT (' BER0(', F6.3, ') = ', F6.3)
END
BER0( 0.400) = 1.000
PHONE: 713.784.3131 FAX:713.781.9260 |