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