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

erfc().

Beispiel

erf.cpp
#include <cmath>
#include <iostream>
 
int main()
{
  std::cout << "erf(1.0) = " << std::erf(1.0) << '\n';
}