ctanh.f 227 Bytes
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