sinh method

Complex sinh()

Computes the hyperbolic sine of this complex number.

Implementation

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