Provided by:
manpages-fr_1.67.0-1_all 
NOM
cerf, cerff, cerfl, cerfc, cerfcf, cerfcl - Fonctions d’erreurs
complexes.
SYNOPSIS
#include <complex.h>
double complex cerf(double complex z);
float complex cerff(float complex z);
long double complex cerfl(long double complex z);
double complex cerfc(double complex z);
float complex cerfcf(float complex z);
long double complex cerfcl(long double complex z);
DESCRIPTION
La fonction cerf() est la version complexe de la fonction d’erreur.
erf(z) = 2/sqrt(pi) * intégrale de 0 à z de exp(-t*t) dt. La fonction
cerfc() est définie comme cerfc(z) = 1-cerf(z).
CONFORMITÉ
C99
VOIR AUSSI
erf(3)
TRADUCTION
Christophe Blaess, 2003.