sin method

Complex sin()

Computes the sine of this complex number.

Implementation

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