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