kennen:lib:atan
Inhaltsverzeichnis
atan()
Parameter
x | - |
Ergebnis
Rückgabewert: Hauptwert von arctan(x) im Bereich $(- \frac{\pi}{2}, \frac{\pi}{2})$.
Siehe auch
Beispiel
- atan.cpp
#include <cmath> #include <iostream> int main() { double x = std::sqrt(3); std::cout << "Arcus tangens von " << x << " = " << std::atan(x) << '\n'; }
kennen/lib/atan.txt · Zuletzt geändert: 2019-11-20 15:01 von 127.0.0.1