This function evaluates the exponentially scaled Airy function of the second kind.
BIE — Function
value. (Output)
The Airy function of the second kind for
negative arguments and the exponentially scaled Airy function of the second
kind, eζBi(X), for positive
arguments where
X — Argument for which the Airy function value is desired. (Input)
Generic: BIE (X)
Specific: The specific interface names are S_BIE and D_BIE.
Single: BIE (X)
Double: The double precision name is DBIE.
The exponentially scaled Airy function of the second kind is defined to be
If , then the answer will have no precision. If , then the answer will be less accurate than half precision. Here, ε = AMACH(4) is the machine precision.
In this example, BIE(0.49) is computed and printed.
USE BIE_INT
USE UMACH_INT
IMPLICIT NONE
! Declare variables
INTEGER NOUT
REAL VALUE, X
! Compute
X = 0.49
VALUE = BIE(X)
! Print the results
CALL UMACH (2, NOUT)
WRITE (NOUT,99999) X, VALUE
99999 FORMAT (' BIE(', F6.3, ') = ', F6.3)
END
BIE( 0.490) = 0.675
PHONE: 713.784.3131 FAX:713.781.9260 |