catanh

Autres langues

Langue: fr

Version: 21 juillet 2003 (openSuse - 09/10/07)

Section: 3 (Bibliothèques de fonctions)

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.