Provided by:
manpages-fr_1.67.0-1_all 
NOM
clog, clogf, clogl - Logarithmes népériens de nombres complexes.
SYNOPSIS
#include <complex.h>
double complex clog(double complexz);
float complex clogf(float complex z);
long double complex clogl(long double complexz);
DESCRIPTION
La fonction logarithme clog() est l’inverions de la fonction
exponentielle cexp(). Ainsi, si y = clog(z), alors z = cexp(y). La
partie imaginaire de y choisie dans l’intervalle [-I*pi,I*pi].
On a clog(z) = log(cabs(z))+i*carg(z).
Notez que si z est proche de zéro, il peut y avoir un débordement.
CONFORMITÉ
C99
VOIR AUSSI
cabs(3), cexp(3), clog10(3)
TRADUCTION
Christophe Blaess, 2003.