home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 10 / 10.iso / l / l292 / 1.ddi / SPECFUNC.FOR < prev    next >
Encoding:
Text File  |  1989-10-12  |  20.4 KB  |  719 lines

  1.  
  2.       FUNCTION ArcTanh(x)
  3.       REAL x
  4.         ArcTanh = 0.5 * LOG((1.0 + x) / (1.0 - x))
  5.       END !FUNCTION
  6.  
  7.       FUNCTION EvalAssocConf(a, b, z)
  8.       INCLUDE 'STDHDR.FOR'
  9.       REAL result, a, b, z, temp1, temp2,Calc1, Calc2, Calc3
  10.       REAL PiCalc, Kum1, Kum2, Exp1, Subtotal, Gam1, Gam2
  11.       INTEGER ErrorFlag
  12.           Temp1 = 0
  13.           Temp2 = 0
  14.           PiCalc = pi / SIN(pi * b)
  15.           Kum1 = KumrConf(a, b, z)
  16.           Gam1 = Gamma(1.0 + a - b, ErrorFlag) * Gamma(b, ErrorFlag)
  17.           Temp1 = Gamma(1.0 + a - b, ErrorFlag)
  18.           Temp2 = Gamma(b, ErrorFlag)
  19.           Gam1 = Gamma(1.0 + a - b, ErrorFlag) * Gamma(b, ErrorFlag)
  20.           Exp1 = CalcPower(z, 1.0 - b)
  21.           Kum2 = KumrConf(1.0 + a - b, 2.0 - b, z)
  22.           Gam2 = Gamma(a, ErrorFlag) * Gamma(2.0 - b, ErrorFlag)
  23.           Temp1 = Gamma(a, ErrorFlag)
  24.           Temp2 = Gamma(2.0 - b, ErrorFlag)
  25.           Calc1 = Kum1 / Gam1
  26.           Calc2 = Exp1 * Kum2
  27.           Calc3 = Calc2 / Gam2
  28.           Subtotal = Calc1 - Calc3
  29.           result = PiCalc * Subtotal
  30.           EvalAssocConf = result
  31.       END !FUNCTION
  32.  
  33.  
  34.       FUNCTION AssocConf(a, b, z)
  35.       INCLUDE 'STDHDR.FOR'
  36.       REAL a, b, z, bu,bl
  37.       result = 0.0
  38.       IF ( ABS(z) .LT. 1E-10) THEN
  39.         result = 0.0
  40.       ELSE
  41.         IF ( ABS(b - INT(b)) .LT. 0.0001 .OR.
  42.      +       ABS(b - NINT(b)) .LT. 0.0001) THEN
  43.             bu = b + 0.0005
  44.             bl = b - 0.0005
  45.           result  = EvalAssocConf(a, bl , z) +
  46.      +       EvalAssocConf(a, bu, z) / 2.0
  47.         ELSE
  48.           result  = EvalAssocConf(a, b , z)
  49.  
  50.         END IF
  51.       END IF
  52.       AssocConf = result
  53.       END !FUNCTION
  54.  
  55.       FUNCTION Bessel(order, x, ErrorFlag)
  56.       INCLUDE 'STDHDR.FOR'
  57.       REAL result,order, x, d, f, j, sum, NearZero, Tolerance
  58.       INTEGER c, ErrorFlag
  59.       PARAMETER (nearzero = 1E-20)
  60.       PARAMETER (Tolerance = 1E-10)
  61.       result = 0.0
  62.       IF ( order .LT. 0) THEN
  63.         ErrorFlag = 3
  64.       ELSE
  65.         IF ( ((x .LT. 0) .AND. (ABS(x - NINT(x)) .LT. nearzero))) THEN
  66.           ErrorFlag = 2
  67.         ELSE
  68.           IF ( ABS(x) .LT. nearzero) THEN
  69.              IF ( ABS(order) .LT. nearzero) THEN
  70.                result = 1
  71.              ELSE
  72.                result = 0
  73.              END IF
  74.           ELSE
  75.             IF ( x .LE. 15.0) THEN
  76.               f = 1.0 / Gamma(REAL(order) + 1.0, ErrorFlag)
  77.               j = -((x ** 2) / 4.0)
  78.               d = order + 1
  79.               sum = f
  80.               c = 1
  81.               DO WHILE (ABS(f) .GE. Tolerance  )
  82.                 f = f * j / (REAL(c) * d)
  83.                 d = d + 1
  84.                 c = c + 1
  85.                 sum = sum + f
  86.               END DO
  87.               IF ( x .GT. 0) THEN
  88.                 result = sum * EXP(order * LOG(x / 2.0))
  89.               ELSE
  90.                 result = (1.0 - 2.0 * (MOD(INT(order), 2))) *
  91.      +                  sum * EXP(order * LOG(ABS(x / 2.0)))
  92.               END IF
  93.             ELSE
  94.               result = SQRT(2.0 / (pi * x)) *
  95.      +                   COS(x - pi / 4.0 - order * pi * 2.0)
  96.             END IF
  97.          END IF
  98.         END IF
  99.       END IF
  100.       Bessel = result
  101.       END !FUNCTION  Bessel
  102.  
  103.       FUNCTION Beta(z, w)
  104.       REAL z, w, b
  105.         b = LogGamma(z) + LogGamma(w) - LogGamma(z + w)
  106.         Beta = EXP(b)
  107.       END !FUNCTION
  108.  
  109.      !!!------------------------------------------------------------------
  110.      !!! Calculated a polynomial
  111.      !!!------------------------------------------------------------------
  112.       FUNCTION CalcPoly(XIn, CoefVector, order)
  113.       REAL CoefVector(*), xin
  114.       INTEGER order, i
  115.  
  116.       YOut = CoefVector(order)
  117.       DO i = order - 1, 0,  -1
  118.         YOut = YOut * XIn + CoefVector(i)
  119.       END DO
  120.       CalcPoly = YOut
  121.       END !FUNCTION
  122.  
  123.       FUNCTION CalcPower(x, a)
  124.       REAL x, a
  125.       CalcPower = EXP(a * LOG(x))
  126.       END !FUNCTION
  127.  
  128.  
  129.       FUNCTION  Combin (n, m)
  130.       !!! Combinatorial bracket n-over-m, m an integer
  131.       REAL n, nt, result
  132.       INTEGER i,m,im
  133.         result = 1
  134.         nt = n
  135.         DO I=1,M
  136.           im = M-I+1
  137.           result =  result * (nt/ REAL(im))
  138.           nt = nt - 1.0
  139.         END DO
  140.         Combin = result
  141.       END !FUNCTION   Combin
  142.  
  143.       FUNCTION Coshy (z)
  144.       REAL z
  145.        CoshY = (EXP(z) + EXP(-z)) / 2.0
  146.       END !FUNCTION  Cosh
  147.  
  148.       SUBROUTINE DisplayErrorMessage(ErrorFlag)
  149.       INTEGER ErrorFlag
  150.       SELECT CASE (ErrorFlag)
  151.  
  152.        CASE (0)
  153.           WRITE (*,*) 'No Errors Found.'
  154.        CASE (1)
  155.           WRITE (*,*) 'ERROR!!  Argument must be a nonzero number'
  156.        CASE (2)
  157.           WRITE (*,*) 'ERROR!!  Argument must not be a negative'
  158.        CASE (3)
  159.           WRITE (*,*)
  160.      +     'ERROR!!  Order of polynomial must be greater than zero'
  161.        CASE (4)
  162.          WRITE (*,*) 'ERROR!!  Argument must be greater than -1'
  163.        END SELECT
  164.        END !SUB
  165.  
  166.        FUNCTION ErrFunc(x, ErrorFlag)
  167.        INCLUDE 'STDHDR.FOR'
  168.        REAL x, result, p, temp
  169.        INTEGER ErrorFlag
  170.        REAL PolyCoef(0 : 15), NearZero
  171.        PARAMETER (nearzero = 1E-20)
  172.        result = 0.0
  173.        IF ( ABS(x) .LT. nearzero) THEN
  174.          ErrorFlag = 1
  175.        ELSE
  176.          IF ( x .GT. 4.0) THEN
  177.            result = 1.0
  178.          ELSE
  179.            IF ( x .GT. 1.5) THEN
  180.              result = ErrFuncIter(x)
  181.            ELSE
  182.              p = x * x
  183.              PolyCoef(0) = 0.0
  184.              PolyCoef(0) = 0.0
  185.              PolyCoef(1) = 0.6666666999999999
  186.              PolyCoef(2) = 0.2666667
  187.              PolyCoef(3) = 0.07619048
  188.              PolyCoef(4) = 0.01693122
  189.              PolyCoef(5) = 3.078403E-03
  190.              PolyCoef(6) = 4.736005E-04
  191.              PolyCoef(7) = 6.314673E-05
  192.              PolyCoef(8) = 7.429027E-06
  193.              PolyCoef(9) = 7.820028E-07
  194.              PolyCoef(10) = 7.447646E-08
  195.              PolyCoef(11) = 6.476214E-09
  196.              temp = x + x * CalcPoly(p, PolyCoef, 11)
  197.              result = 2.0 * temp * EXP(-p) / SQRT(pi)
  198.            END IF
  199.          END IF
  200.        END IF
  201.        ErrFunc = result
  202.       END !FUNCTION ErrFunc
  203.  
  204.  
  205.       FUNCTION ErrFuncComp(x, ErrorFlag)
  206.       REAL x
  207.       INTEGER ErrorFlag
  208.       ErrFuncComp = 1 - ErrFunc(x, ErrorFlag)
  209.       END !FUNCTION
  210.  
  211.  
  212.  
  213.       FUNCTION ErrFuncI(x, y)
  214.       !!!   The imaginary part of complex error function, z = x + iy
  215.       INCLUDE 'STDHDR.FOR'
  216.       REAL x, y, jy,x2, xy2,sum, part, g
  217.       INTEGER j
  218.       x2 = 2.0 * x
  219.       xy2 = x2 * y
  220.       sum = 0.0
  221.       IF ( ABS(x) .LT. 0.0000001) THEN
  222.         part = y / pi
  223.       ELSE
  224.         part = EXP(-(x ** 2)) / (pi * x2) * SIN(xy2)
  225.       END IF
  226.       sum = sum + part
  227.       part = 0
  228.       DO j = 1, 20
  229.         jy = j * y
  230.         g = x2 * Cosh(jy) * SIN(xy2) + j * Sinh(jy) * COS(xy2)
  231.         part = part * EXP(-((j ** 2) / 4.0)) / ((j**2) + (x2**2)) * g
  232.       END DO
  233.       sum = sum + part * EXP(-(x ** 2)) * 2 / pi
  234.       ErrFuncI = sum
  235.       END !FUNCTION   ErrFunci
  236.  
  237.  
  238.  
  239.       FUNCTION ErrFuncIter(x)
  240.       INCLUDE 'STDHDR.FOR'
  241.       REAL x, a, s1, t, result, Tolerance
  242.       INTEGER i
  243.       PARAMETER (Tolerance = 1E-10)
  244.       result = 0.0
  245.       a = x ** 2
  246.       s1 = x
  247.       t = x
  248.       i = 1
  249.       DO WHILE (t .GT. (Tolerance * s1))
  250.         s2 = s1
  251.         t = 2.0 * t * (a / (1.0 + 2.0 * i))
  252.         s1 = t + s2
  253.         i = i + 1
  254.       END DO
  255.       result = 2.0 * s1 * (EXP(-a)) / SQRT(pi)
  256.       ErrFuncIter = result
  257.       END !FUNCTION ErrFuncIter
  258.  
  259.  
  260.  
  261.       FUNCTION ErrFuncR(x, y)
  262.       INCLUDE 'STDHDR.FOR'
  263.       !!!    The real part of complex error function, z = x + iy
  264.       REAL x, y, x2, xy2, sum, part, jy, f
  265.       INTEGER ErrorFlag
  266.       sum = 0.0
  267.       x2 = 2.0 * x
  268.       xy2 = x2 * y
  269.       IF ( ABS(x) .GT. 0.0) THEN
  270.         part = EXP(-(x ** 2))/x * (1.0 / (2.0*pi)) * (1.0- COS(xy2))
  271.       ELSE
  272.         part = 0.0
  273.       END IF
  274.       sum = ErrFunc(x, ErrorFlag)
  275.       sum = sum + part
  276.       part = 0.0
  277.       DO j = 1, 10
  278.         jy = j * y
  279.         f = x2 - x2 * COS(xy2) * Cosh(jy) + j * Sinh(jy) * SIN(xy2)
  280.         part = part + EXP(-(j ** 2/4.0))/(j ** 2 + 4 * x ** 2) * f
  281.       END DO
  282.       sum = sum + part * 2.0 / pi * EXP(-(x ** 2))
  283.       ErrFuncR = sum
  284.       END !FUNCTION  ErrFuncr
  285.  
  286.       FUNCTION EvalGamma(x)
  287.       INCLUDE 'STDHDR.FOR'
  288.       REAL result, x, y, f,NearZero
  289.       PARAMETER (nearzero = 1E-20)
  290.  
  291.         result = 0.0
  292.         y = x
  293.         f = 1
  294.         DO WHILE (y .GT. 1)
  295.           y = y - 1
  296.           f = f * y
  297.         END DO
  298.         IF ( y .EQ. 1) THEN
  299.           result = f
  300.         ELSE
  301.           IF ( y .GT. 0.5) THEN
  302.             result = (f * pi) / (SIN(pi * y) * StandGamma(1.0 - y))
  303.           ELSE
  304.             result = f * StandGamma(y)
  305.           END IF
  306.         END IF
  307.         EvalGamma = result
  308.       END !FUNCTION   EvalGamma
  309.  
  310.       FUNCTION Gamma(x, ErrorFlag)
  311.       INCLUDE 'STDHDR.FOR'
  312.       REAL result, x, NearZero
  313.       INTEGER ErrorFlag
  314.       PARAMETER (nearzero = 1E-20)
  315.       result = 0.0
  316.       IF (ABS(x) .LT. nearzero) THEN
  317.         ErrorFlag = 1
  318.       ELSE
  319.         IF ((x .LT. 0) .AND. (ABS(x - NINT(x)) .LT. nearzero)) THEN
  320.           ErrorFlag = 2
  321.         ELSE
  322.           IF ( x .EQ. 1) THEN
  323.             result = 1
  324.           ELSE
  325.             IF ( x .LT. 0.0) THEN
  326.               result = -(pi / (x * SIN(pi * x) * EvalGamma(-x)))
  327.             ELSE
  328.               result = EvalGamma(x)
  329.             END IF
  330.           END IF
  331.         END IF
  332.       END IF
  333.       Gamma = result
  334.       END !FUNCTION   Gamma
  335.  
  336.       FUNCTION GaussHyper(a, b, c, z)
  337.       !!!    Gauss hypergeometric function
  338.       REAL a,b,c,z,g,sum, Tolerance
  339.       INTEGER j
  340.       PARAMETER (Tolerance = 1E-10)
  341.       g = 1
  342.       j = 1
  343.       sum = 0 .0
  344.       DO WHILE (j .LE. 80 .AND. ABS(G) .GE. Tolerance)
  345.         sum = sum + g
  346.         g = g * a * b * z / (REAL(j) * c)
  347.         j = j + 1
  348.         a = a + 1
  349.         b = b + 1
  350.         c = c + 1
  351.       END DO
  352.       GaussHyper = sum
  353.       END !FUNCTION   GaussHyper
  354.  
  355.       FUNCTION Hermite(n, x, ErrorFlag)
  356.       !!! Hermite Polynomial of Order n
  357.       REAL result, X
  358.       IF ( n .LT. 0) THEN
  359.         ErrorFlag = 3
  360.       ELSE
  361.         SELECT CASE (n)
  362.           CASE (0)
  363.             result = 1.0
  364.           CASE (1)
  365.             result = 2.0 * x
  366.           CASE (2)
  367.             result = 4.0 * (x ** 2) - 2.0
  368.           CASE (3)
  369.             result = 8.0 * CalcPower(x, 3.0) - (12.0 * x)
  370.           CASE (4)
  371.             result = 16.0 * CalcPower(x, 4.0) -
  372.      +           48.0 * (x ** 2) + 12.0
  373.           CASE (5)
  374.             result = 32.0 * CalcPower(x, 5.0) - 160.0 *
  375.      +           CalcPower(x, 3.0) + 120.0 * x
  376.         CASE DEFAULT
  377.           result = x * EXP(n * LOG(2)) *
  378.      +       AssocConf(0.5 - REAL(n) / 2.0, 3.0 / 2.0, (x ** 2))
  379.         END SELECT
  380.       END IF
  381.       Hermite = result
  382.       END !FUNCTION  Hermite
  383.  
  384.       !!!---------------------------------------
  385.       !!!    I N C O M P L E T E  B E T A
  386.       !!!---------------------------------------
  387.       FUNCTION IBeta(a, b, x)
  388.       REAL a,b,x,am,bm,az,qab,qap,qam,bz,m,em,tem,d,ap
  389.       REAL bpp, aold, Tolerance
  390.       PARAMETER (Tolerance = 1E-10)
  391.       am = 1.0
  392.       bm = 1.0
  393.       az = 1.0
  394.       aold = 0.0
  395.       qab = a + b
  396.       qap = a + 1.0
  397.       qam = a - 1.0
  398.       bz = 1.0 - qab * x / qap
  399.       m = 1.0
  400.       DO WHILE (ABS(az - aold) .GE. (Tolerance * ABS(az)))
  401.         em = m
  402.         tem = 2.0 * em
  403.         d = em * (b - m) * x / ((qam + tem) * (a + tem))
  404.         ap = az + d * am
  405.         bp = bz + d * bm
  406.         d = -(a + em) * (qab + em) * x / ((a + tem) * (qap + tem))
  407.         app = ap + d * az
  408.         bpp = bp + d * bz
  409.         aold = az
  410.         am = ap / bpp
  411.         bm = bp / bpp
  412.         az = app / bpp
  413.         bz = 1.0
  414.         m = m + 1.0
  415.       END DO
  416.       IBeta = az
  417.       END !FUNCTIONIBeta
  418.  
  419.  
  420.  
  421.       FUNCTION IncompleteBeta(a, b, x)
  422.       REAL a,b,x,bt,result, NearZero
  423.       PARAMETER (nearzero = 1E-20)
  424.       result = 0.0
  425.       IF (x .LT. 0.0 .OR. x .GT. 1.0) THEN
  426.         WRITE (*,*) 'Improper Value passed IncompleteBeta'
  427.       ELSE
  428.         IF ((ABS(x) .LT. nearzero) .OR. ((1.0-x) .LT. nearzero)) THEN
  429.           bt = 0.0
  430.         ELSE
  431.           bt = LogGamma(a + b) + a*LOG(x) +
  432.      +         b * LOG(1.0 - x) - LogGamma(a) - LogGamma(b)
  433.         END IF
  434.         bt = EXP(bt)
  435.         IF ( x .LT. (a + 1.0) / (a + b + 2.0)) THEN
  436.           result = bt * (IBeta(a, b, x) / a)
  437.         ELSE
  438.           result = 1 - bt * IBeta(b, a, 1.0 - x) / b
  439.         END IF
  440.         IncompleteBeta = result
  441.       END IF
  442.       END !FUNCTION
  443.  
  444.  
  445.  
  446.       FUNCTION IncompleteGamma(a, x)
  447.       REAL a, x, result, glog, s1, dif, ir, Tolerance
  448.       PARAMETER (Tolerance = 1E-10)
  449.       result = 0.0
  450.       IF (a .LT. 0.0 .OR. x .LE. 0.0) THEN
  451.         result = 0.0
  452.       ELSE
  453.         gLOG = LogGamma(a)
  454.         ir = a
  455.         s1 = 1.0 / a
  456.         dif = s1
  457.         DO WHILE (ABS(dif) .GT. ABS(s1) * Tolerance)
  458.           ir = ir + 1.0
  459.           dif = dif * x / ir
  460.           s1 = s1 + dif
  461.         END DO
  462.         result = s1 * EXP(-x + a * LOG(x) - gLOG)
  463.       END IF
  464.       IncompleteGamma = result
  465.       END !FUNCTION
  466.  
  467.       FUNCTION IncompleteGammaComp(a, x)
  468.       REAL a,x
  469.       IncompleteGammaComp = 1.0 - IncompleteGamma(a, x)
  470.       END !FUNCTION
  471.  
  472.       FUNCTION Jacobi(n, a, b, x, ErrorFlag)
  473.       REAL result,a,b,x
  474.       INTEGER n, ErrorFlag
  475.       !!! Jacobi polynomial of order n, superscripts (a,b)
  476.       result = 0.0
  477.       IF ( n .LT. 0) THEN
  478.         ErrorFlag = 3
  479.       ELSE
  480.         IF ((a .LE. -1.0) .OR. (b .LE. -1.0)) THEN
  481.           ErrorFlag = 4
  482.         ELSE
  483.          result = Combin(REAL(n) + a, n) *
  484.      +        GaussHyper(-REAL(n), n+a+b+1.0, a+1.0, (1.0-x)/2.0)
  485.         END IF
  486.       END IF
  487.       Jacobi = result
  488.       END !FUNCTION  Jacobi
  489.  
  490.       FUNCTION KumrConf(a, b, z)
  491.       REAL a,b,z, sum, g, Tolerance
  492.       INTEGER j
  493.       PARAMETER (Tolerance = 1E-10)
  494.       !!!  Kummer (confluent) hypergeometric function
  495.       sum = 0.0
  496.       g = 1.0
  497.       j = 1
  498.       DO WHILE ((j .LT. 80) .AND. (ABS(g) .LT. Tolerance))
  499.         sum = sum + g
  500.         g = g * a * z / (b * j)
  501.         j = j + 1
  502.         a = a + 1.0
  503.         b = b + 1.0
  504.       END DO
  505.  
  506.       KumrConf = sum
  507.       END !FUNCTION    KumrConf
  508.  
  509.       FUNCTION Laguerre(n, a, x, ErrorFlag)
  510.       !!! Laguerre function or order n, superscript a
  511.       REAL result,a, x,num
  512.       INTEGER n, ErrorFlag
  513.       IF ( n .LT. 0) THEN
  514.         ErrorFlag = 3
  515.       ELSE
  516.         IF ( a .LE. -1) THEN
  517.           ErrorFlag = 4
  518.         ELSE
  519.           IF ( (n/2) .EQ. 0) THEN
  520.             num = 1
  521.           ELSE
  522.             num = -1
  523.           END IF
  524.           SELECT CASE (n)
  525.             CASE (0)
  526.               result = 1
  527.             CASE (1)
  528.               result = -x + 1
  529.             CASE (2)
  530.               result = 0.5 * ((x ** 2) - 4 * x + 2)
  531.             CASE (3)
  532.               result = 1.0 / 6.0 *
  533.      +         (-CalcPower(x, 3.0) + 9.0 * (x ** 2) - 18.0 * x + 6)
  534.             CASE (4)
  535.               result = 1.0 / 24.0 * (CalcPower(x, 4.0) - 16 *
  536.      +          CalcPower(x, 3.0) + 72.0 * (x ** 2) - 96.0*x + 24.0)
  537.           CASE DEFAULT
  538.               result = num * AssocConf(-REAL(n), a + 1, x) /
  539.      +           Gamma(REAL(n) + 1.0, ErrorFlag)
  540.           END SELECT
  541.         END IF
  542.       END IF
  543.       Laguerre = result
  544.       END !FUNCTION  Laguerre
  545.  
  546.       FUNCTION Legend(n, x, ErrorFlag)
  547.       REAL x
  548.       INTEGER result,n, ErrorFlag
  549.       !!! Legendre Polynomial of Order n
  550.  
  551.       IF ( n .LT. 0) THEN
  552.         ErrorFlag = 3
  553.       ELSE
  554.         SELECT CASE (n)
  555.           CASE (0)
  556.              result = 1.0
  557.           CASE (1)
  558.              result = x
  559.           CASE (2)
  560.             result = 0.5 * (3.0 * x * x - 1.0)
  561.           CASE (3)
  562.              result = 0.5 * (5.0 * CalcPower(x, 3.0) - (3.0 * x))
  563.          CASE (4)
  564.              result = 1.0 / 8.0 * (35.0 * CalcPower(x, 4.0) -
  565.      +                 30.0 * (4.0) + 3.0)
  566.          CASE (5)
  567.              result = 1.0 / 8.0 * (63.0 * CalcPower(x, 5.0) -
  568.      +                 70.0 * CalcPower(x, 3.0) + 15.0 * x)
  569.          CASE (6)
  570.              result = 1.0 / 16.0 * (231.0 * CalcPower(x, 6.0) -
  571.      +                 315.0 * CalcPower(x, 4.0) + 105.0 * 4.0 - 5.0)
  572.          CASE DEFAULT
  573.             result = GaussHyper(-REAL(n), REAL(n)+1.0,1.0,(1.0-x)/2.0)
  574.           END SELECT
  575.         END IF
  576.         Legend = result
  577.       END !FUNCTION   Legend
  578.  
  579.  
  580.  
  581.       FUNCTION LogGamma(x)
  582.       REAL x,stp,xx,temp,ser,coef(0 : 15)
  583.       INTEGER i
  584.       coef(0) = 76.18009173
  585.       coef(1) = -86.50532033
  586.       coef(2) = 24.01409822
  587.       coef(3) = -1.231739516
  588.       coef(4) = 0.00120858003
  589.       coef(5) = -5.36382E-06
  590.       stp = 2.50662827565
  591.       xx = x - 1.0
  592.       temp = xx + 5.5
  593.       temp = (xx + 0.5) * LOG(temp) - temp
  594.       ser = 1.0
  595.       DO i = 0, 5
  596.         xx = xx + 1.0
  597.         ser = ser + coef(i) / xx
  598.       END DO
  599.       LogGamma = temp + LOG(stp * ser)
  600.       END !FUNCTION
  601.  
  602.       FUNCTION ModBesselI(n, x, ErrorFlag)
  603.       !!! Modified Bessel function i of order n
  604.       REAL result, n, x, NearZero
  605.       INTEGER ErrorFlag
  606.       PARAMETER (nearzero = 1E-20)
  607.        result = 0.0
  608.        IF ( ABS(x) .LT. nearzero) THEN
  609.          IF ( ABS(n) .LT. nearzero) THEN
  610.              result = 1.0
  611.          ELSE
  612.              result = 0.0
  613.          END IF
  614.        ELSE
  615.          result = EXP(-x) * EXP(n * LOG(x / 2.0)) *
  616.      +     KumrConf(n+0.5, 2.0*n+1.0, 2*x)/Gamma(n+1, ErrorFlag)
  617.       END IF
  618.       ModBesselI = result
  619.       END !FUNCTION  ModBesselI
  620.  
  621.       FUNCTION ModBesselK(n, x)
  622.       INCLUDE 'STDHDR.FOR'
  623.       !!! Modified bessel function k of order n
  624.       REAL result,n, x, NearZero
  625.       PARAMETER (nearzero = 1E-20)
  626.  
  627.       IF ( ABS(x) .LT. nearzero) THEN
  628.          IF ( ABS(n) .LT. nearzero) THEN
  629.              result = 1.0
  630.          ELSE
  631.             result = 0.0
  632.          END IF
  633.       ELSE
  634.         result = EXP(n * LOG(2 * x)) * EXP(-x) * SQRT(pi) *
  635.      +      AssocConf(n + 0.5, 2.0 * n + 1.0, 2.0 * x)
  636.       END IF
  637.       ModBesselK = result
  638.       END !FUNCTION ModBesselK
  639.  
  640.       FUNCTION Sech(z)
  641.       REAL z
  642.       Sech = 1.0 / Cosh(z)
  643.       END !FUNCTION  Sech
  644.  
  645.       FUNCTION SinhY(z)
  646.       REAL z
  647.       SinhY = (EXP(z) - EXP(-z)) / 2.0
  648.       END !FUNCTION  Sinh
  649.  
  650.       FUNCTION StandGamma(y)
  651.       REAL BigArry(0 : 20), y, f, temp
  652.  
  653.       BigArry(0) = 0.5772156649015329
  654.       BigArry(1) = -.6558780715202538
  655.       BigArry(2) = -0.0420026350340952
  656.       BigArry(3) = 0.1665386113822915
  657.       BigArry(4) = -0.0421977345555443
  658.       BigArry(5) = -9.621971527877001e-03
  659.       BigArry(6) = 0.007218943246663
  660.       BigArry(7) = -0.0011651675918591
  661.       BigArry(8) = -0.0002152416741149
  662.       BigArry(9) = 0.0001280502823882
  663.       BigArry(10) = -0.0000201348547807
  664.       BigArry(11) = -0.0000012504934821
  665.       BigArry(12) = 0.000001133027232
  666.       BigArry(13) = -0.0000002056338417
  667.       BigArry(14) = 0.000000006116095
  668.       BigArry(15) = 0.0000000050020075
  669.       BigArry(16) = -0.0000000011812746
  670.       BigArry(17) = 0.0000000001043427
  671.       BigArry(18) = 7.782299999999999D-12
  672.       BigArry(19) = -0.0000000000036968
  673.       BigArry(20) = 0.000000000000051
  674.       f = y
  675.       temp = f
  676.       DO i = 0, 20
  677.         f = f * y
  678.         temp = temp + f * BigArry(i)
  679.       END DO
  680.       StandGamma = 1.0 / temp
  681.       END !FUNCTION  StandGamma
  682.  
  683.       FUNCTION Tangent(x)
  684.       REAL x
  685.       Tangent = SIN(x) / COS(x)
  686.       END !FUNCTION   Tan
  687.  
  688.       FUNCTION Tcheb(n, x, ErrorFlag)
  689.       !!! Tchebyshev polynomial of order n
  690.       INTEGER n, ErrorFlag
  691.       REAL x, result
  692.       IF ( n .LT. 0) THEN
  693.         ErrorFlag = 3
  694.       ELSE
  695.         SELECT CASE (n)
  696.           CASE (0)
  697.                result = 1.0
  698.           CASE (1)
  699.                result = x
  700.           CASE (2)
  701.                result = 2.0 * (x ** 2) - 1.0
  702.           CASE (3 )
  703.                result = 4.0 * CalcPower(x, 3.0) - 3 * x
  704.           CASE (4)
  705.                result = 8.0 * CalcPower(x, 4.0) - 8.0 * (x ** 2) + 1.0
  706.           CASE (5)
  707.                result = 16.0 * CalcPower(x, 5.0) - 20.0 *
  708.      +          CalcPower(x, 3.0) + 5.0 * x
  709.           CASE (6)
  710.                result = 32.0 * CalcPower(x, 6.0) - 48 *
  711.      +          CalcPower(x, 4.0) + 18 * (x ** 2) - 1.0
  712.          CASE DEFAULT
  713.            result = GaussHyper(-REAL(n), REAL(n), 0.5, (1.0 - x) / 2.0)
  714.          END SELECT
  715.       END IF
  716.       Tcheb = result
  717.       END !FUNCTION   Tcheb
  718.  
  719.