FUNCTION
errorFnC_exp
The Exponential Complementary Error Function.
Interface
#include <codecogs/maths/special/errorfnc_exp.h>
using namespace Maths::Special;
This is related to the Complementary Error Function and Error Function by:
(1)
Graphically it has the following form: \graph x=-2.9:2.9
Example:
#include <codecogs/maths/special/errorfnc_exp.h>
#include <stdio.h>
using namespace Maths::Special;
int main()
{
double x = 0.5;
printf("\n errorFnC_exp(%f) = %f", x, errorFnC_exp(x));
return getchar();
}Output:
errorFnC_exp(0.500000) = 0.615690
Parameters
x
the value at which to evaluate the function
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.