method

sinh

v1_8_7_72 - Show latest stable - Class: Math
sinh(z)
public

No documentation available.

# File lib/complex.rb, line 523
  def sinh(z)
    if Complex.generic?(z)
      sinh!(z)
    else
      Complex( sinh!(z.real)*cos!(z.image), cosh!(z.real)*sin!(z.image) )
    end
  end