Flowdock
method

cosh

Importance_0
v1_8_7_330 - Show latest stable - 0 notes - Class: Math
cosh(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 527
  def cosh(z)
    if Complex.generic?(z)
      cosh!(z)
    else
      Complex( cosh!(z.real)*cos!(z.image), sinh!(z.real)*sin!(z.image) )
    end
  end
Register or log in to add new notes.