Provided by:
manpages-fr_1.67.0-1_all 
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.