====== ctanh ====== double complex ctanh(double complex z); ==== description of ctanh ==== Calculate the Complex Tangent #include #include int main( void ) { long double complex zlong=4.2 + I*2.34; double complex zdouble=(double complex)zlong; double result; result = ctanh(zdouble); printf("ctanh(%f + I*%f) = %f\n", creal(zdouble), cimag(zdouble), result); return 0; } ===== output of ctanh c example ===== ctanh(4.200000 + I*2.340000) = 1.000014