| Contents |
#include <codecogs/maths/special/errorfnc_exp.h>
using namespace Maths::Special;
| double | errorFnC_exp (double x)[inline] The Exponential Complementary Error Function. | |
| Real | cc_specialErrorFnC_exp (Real x) This function is available as a Microsoft Excel add-in. |
| doubleerrorFnC_exp( | double | x | )[inline] |
#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
| x | the value at which to evaluate the function |