
NOMBRE
erf, erfc - funcion error y funcion error complementario
SINOPSIS
#include <math.h>
double erf(double x);
double erfc (double x);
DESCRIPCI'ON
La funcion erf() devuelve la funcion error de x; definida como
erf(x) = 2/sqrt(pi)* integral desde 0 hasta x de exp(-t*t) dt
La funcion erfc() devuelve la funcion error complementario de x, que es
1.0 - erf(x).
CONFORME A
SVID 3, BSD 4.3
V'EASE TAMBI'EN
exp(3)