FUNCTION
errorFn
The Error Function.
Interface
#include <codecogs/maths/special/errorfn.h>
using namespace Maths::Special;
The Error Functionis defined by equation
(1)
and has the shape \graph x=-2.9:2.9
This approximation of erf is only valid between -3 and 3
References
- Eric W. Weisstein. "Erf." From MathWorld--A Wolfram Web Resource
- http://mathworld.wolfram.com/Erf.html
Example 1
#include <codecogs/maths/special/errorfn.h>
#include <stdio.h>
using namespace Maths::Special;
int main( )
{
double x = 0.5;
printf("\n errorFn(%f) = %f", x, errorFn(x));
return getchar();
}Output:
errorFn(0.500000) = 0.520500Parameters
x
the upper limit of the integral (-3<x<3)
Returns
the value of the Error Function evaluated at the given abscissa
Interactive Calculator
x
Result
Computing…
Set a range above first to export a graph.
This function's source code is only visible to registered users — documentation and the calculator above are free to use either way. Sign in to see it.