kennen:lib:acos
Inhaltsverzeichnis
acos()
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
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'; }
kennen/lib/acos.txt · Zuletzt geändert: 2019-11-20 14:59 von 127.0.0.1