method
acosh
v1_8_7_72 -
Show latest stable
- Class:
Math
acosh(z)public
No documentation available.
# File lib/complex.rb, line 598
def acosh(z)
if Complex.generic?(z) and z >= 1
acosh!(z)
else
log( z + sqrt(z*z-1.0) )
end
end