csin method

complex csin(
  1. complex z
)

Computes the complex sine of z.

Implementation

complex csin(complex z) => complex(
  math.sin(z.real) * _cosh(z.imag),
  math.cos(z.real) * _sinh(z.imag)
);