zasinh.f 256 Bytes
complex(8) function zasinh (z)
      implicit none
c april 1977 version.  w. fullerton, c3, los alamos scientific lab.
      complex z, ci, zasin
      external zasin
      data ci /(0.,1.)/
c
      zasinh = -ci*zasin (ci*z)
c
      return
      end