man catanh (Fonctions bibliothèques) - Fonctions arguments tangentes hyperboliques complexes.
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
TRADUCTION
Christophe Blaess, 2003.