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