erf

Autres langues

Langue: es

Autres versions - même langue

Version: 21 Enero 1995 (fedora - 25/11/07)

Section: 3 (Bibliothèques de fonctions)

NOMBRE

erf, erfc - función error y función error complementario

SINOPSIS

 #include <math.h>
 
 double erf(double x);
 
 double erfc (double x);
 

DESCRIPCIÓN

La función erf() devuelve la función error de x; definida como
erf(x) = 2/sqrt(pi)* integral desde 0 hasta x de exp(-t*t) dt

La función erfc() devuelve la función error complementario de x, que es 1.0 - erf(x).

CONFORME A

SVID 3, BSD 4.3

VÉASE TAMBIÉN

exp(3)