acosh(z)
returns the inverse hyperbolic cosine of z
# File lib/cmath.rb, line 314 def acosh(z) begin if z.real? and z >= 1 acosh!(z) else log(z + sqrt(z * z - 1.0)) end rescue NoMethodError handle_no_method_error end end