Inhaltsverzeichnis

acos()

#include <cmath>

double acos (double x) 

Liefert den Arcuscosinus von x für $-1\leq x\leq 1$.

Parameter

x -

Bei unzulässigem Argument wird errno auf EDOM gesetzt.

Ergebnis

Rückgabewert: Hauptwert von arccos(x) im Bereich [0, pi], im Fehlerfall NAN (not a number).

Siehe auch

asin(), atan(), cos().

Beispiel

acos.cpp
#include <cmath>
#include <iostream>
 
int main()
{
  double x = 0.5 * std::sqrt(3);
  std::cout << "Arcus cosinus von " << x << " = " << std::acos(x) << '\n';
}