method
tanh
v1_8_7_72 -
Show latest stable
- Class:
Math
tanh(z)public
No documentation available.
# File lib/complex.rb, line 539
def tanh(z)
if Complex.generic?(z)
tanh!(z)
else
sinh(z)/cosh(z)
end
end tanh(z)No documentation available.
# File lib/complex.rb, line 539
def tanh(z)
if Complex.generic?(z)
tanh!(z)
else
sinh(z)/cosh(z)
end
end