#include
<cmath>
double erf (double x)
Liefert die Gaußsche Fehlerfunktion $\frac{2}{\sqrt{\pi}} \int_{0}^{x} {e^{-t^2}} dt$.
x | Gleitkommazahl |
Rückgabewert: $\frac{2}{\sqrt{\pi}} \int_{0}^{x} {e^{-t^2}} dt$.
#include <cmath> #include <iostream> int main() { std::cout << "erf(1.0) = " << std::erf(1.0) << '\n'; }