cosh method

Complex cosh()

Computes the hyperbolic cosine of this complex number.

Implementation

Complex cosh() => Complex(a.cosh() * b.cos(), a.sinh() * b.sin());