Blame view

fvn_fnlib/ctanh.f 227 Bytes
38581db0c   daniau   git-svn-id: https...
1
2
3
4
5
6
7
8
9
10
        complex function ctanh (z)
  c april 1977 version.  w. fullerton, c3, los alamos scientific lab.
        complex z, ci, ctan
        external ctan
        data ci /(0.,1.)/
  c
        ctanh = -ci*ctan(ci*z)
  c
        return
        end