Blame view

fvn_fnlib/dchi.f 316 Bytes
38581db0c   daniau   git-svn-id: https...
1
2
3
4
5
6
7
8
9
10
11
12
13
        double precision function dchi (x)
  c december 1980 edition.  w. fullerton, bell labs.
  c
  c evaluate the hyperbolic cosine integral.  when x is negative, the
  c principal value is used.
  c
        double precision x, dei, de1
        external de1, dei
  c
        dchi = 0.5d0 * (dei(x) - de1(x))
  c
        return
        end