kennen:lib:erf
Inhaltsverzeichnis
erf()
#include
<cmath>
double erf (double x)
Liefert die Gaußsche Fehlerfunktion $\frac{2}{\sqrt{\pi}} \int_{0}^{x} {e^{-t^2}} dt$.
Parameter
x | Gleitkommazahl |
Ergebnis
Rückgabewert: $\frac{2}{\sqrt{\pi}} \int_{0}^{x} {e^{-t^2}} dt$.
Siehe auch
Beispiel
- erf.cpp
#include <cmath> #include <iostream> int main() { std::cout << "erf(1.0) = " << std::erf(1.0) << '\n'; }
kennen/lib/erf.txt · Zuletzt geändert: 2019-11-20 15:11 von 127.0.0.1