NAME
ctanh, ctanhf, ctanhl - complex hyperbolic tangent
SYNOPSIS
#include <complex.h>
I double complex ctanh(double complex z );
I float complex ctanhf(float complex z );
I long double complex ctanhl(long double complex z );
Link with -lm.
DESCRIPTION
The complex hyperbolic tangent function ctanh(z) is defined
mathematically as csinh(z) / ccosh(z).
CONFORMING TO
C99
SEE ALSO