Provided by:
manpages-fr_1.67.0-1_all 
NOM
catanh, catanhf, catanhl - Fonctions arguments tangentes hyperboliques
complexes.
SYNOPSIS
#include <complex.h>
double complex catanh(double complex z);
float complex catanhf(float complex double z);
long double complex catanhl(long double complex z);
DESCRIPTION
La fonction catanh() calcule la version complexe de atanh(). Si
y = catanh(z), alors z = ctanh(y). La partie imaginaire de y est
choisie dans l’intervalle [-pi/2*i,pi/2*i].
On a catanh(z) = 0.5*clog((1+z)/(1-z)).
CONFORMITÉ
C99
VOIR AUSSI
cabs(3), cimag(3), atanh(3)
TRADUCTION
Christophe Blaess, 2003.