catan

Autres langues

Langue: fr

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

Section: 3 (Bibliothèques de fonctions)

NOM

catan, catanf, catanl - Fonctions arc tangentes complexes.

SYNOPSIS

#include <complex.h>

double complex catan(double complex z);

float complex catanf(float complex z);

long double complex catanl(long double complex z);

DESCRIPTION

La fonction catan() calcule la version complexe de atan(). Si y = catan(z), alors z = ctan(y). La partie réelle de y est choisie dans l'intervalle [-pi/2,pi/2].

On a catan(z) = 1/2i clog((1+iz)/(1-iz)).

CONFORMITÉ

C99

VOIR AUSSI

clog(3), ccos(3)

TRADUCTION

Christophe Blaess, 2003.