method

tanh

v1_8_6_287 - Show latest stable - Class: Math
tanh(z)
public

No documentation available.

# File lib/complex.rb, line 507
  def tanh(z)
    if Complex.generic?(z)
      tanh!(z)
    else
      sinh(z)/cosh(z)
    end
  end