Flowdock
method

sinh

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

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# 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
Register or log in to add new notes.