C----------------------------------------------------------------------- C IMSL Name: BIE/DBIE (Single/Double precision version) C C Purpose: Evaluate the exponentially scaled Airy function of the C second kind. C C Usage: BIE(X) C C Example 1: C Declare variables INTEGER NOUT REAL BIE, VALUE, X EXTERNAL BIE, UMACH C Compute X = 0.49 VALUE = BIE(X) C Print the results CALL UMACH (2, NOUT) WRITE (NOUT,99999) X, VALUE 99999 FORMAT (' BIE(', F6.3, ') = ', F6.3) END C BIE( 0.490) = 0.675