Inhaltsverzeichnis

erfc()

#include <cmath>

double erfc (double x) 

Liefert das Komplement der Gaußschen Fehlerfunktion 1-erf(x) = $\frac{2}{\sqrt{\pi}} \int_{x}^{\infty} {e^{-t^2}} dt$.

Parameter

x Gleitkommazahl

Ergebnis

Rückgabewert: 1-erf(x).

Siehe auch

erf().

Beispiel

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