Blame view

fvn_fnlib/chi.f 256 Bytes
38581db0c   daniau   git-svn-id: https...
1
2
3
4
5
6
7
8
9
10
11
12
        function chi (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
        external e1, ei
  c
        chi = 0.5 * (ei(x) - e1(x))
  c
        return
        end