Files
2025-02-Numerical/lib/nr/k_and_r/recipes/erff.c
2025-09-12 18:55:25 +09:00

9 lines
97 B
C

float erff(x)
float x;
{
float gammp();
return x < 0.0 ? -gammp(0.5,x*x) : gammp(0.5,x*x);
}