Namensräume
Varianten

std::atan2<div class="t-tr-text">(Std :: valarray)<div class="t-tr-dropdown"><div><div><div class="t-tr-dropdown-arrow-border"></div><div class="t-tr-dropdown-arrow"></div><div class="t-tr-dropdown-h">Original:</div><div class="t-tr-dropdown-orig">(std::valarray)</div><div class="t-tr-dropdown-notes">The text has been machine-translated via [http://translate.google.com Google Translate].<br/> You can help to correct and verify the translation. Click [http://en.cppreference.com/w/Cppreference:MachineTranslations here] for instructions.</div></div></div></div></div>

Aus cppreference.com
< cpp‎ | numeric‎ | valarray

 
 
Numerik-Bibliothek
Gemeinsame mathematischen Funktionen
Floating-Point-Umgebung
Komplexe Zahlen
Numerische Arrays
Pseudo-Zufallszahlen
Compile-time rationale Arithmetik(C++11)
Generische numerische Operationen
Original:
Generic numeric operations
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
iota(C++11)
accumulate
inner_product
adjacent_difference
partial_sum
 
 
definiert in Header <valarray>
template<class T >
valarray<T> atan2(const valarray<T>& y, const valarray<T>& x );
(1)
template<class T >
valarray<T> atan2(const valarray<T>& y, const T& vx );
(2)
template<class T >
valarray<T> atan2(const T& vy, const valarray<T>& x );
(3)
Berechnet den Arcustangens von y/x der Benutzung der Zeichen von Argumenten korrekt zu bestimmen Quadranten .
Original:
Computes the inverse tangent of y/x using the signs of arguments to correctly determine quadrant.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
1)
Berechnet den Arkustangens von jedem Paar von entsprechenden Werten aus y und x .
Original:
Computes the inverse tangent of each pair of corresponding values from y and x.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Das Verhalten ist, wenn x.size()!= y.size() undefined .
Original:
The behavior is undefined if x.size()!= y.size().
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
2)
Berechnet den Arcustangens von vx und jeder Wert in der numerischen Array y .
Original:
Computes the inverse tangent of vx and each value in the numeric array y.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
3)
Berechnet den Arcustangens von vy und jeder Wert in der numerischen Array x .
Original:
Computes the inverse tangent of vy and each value in the numeric array x.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Inhaltsverzeichnis

[Bearbeiten]Parameter

x, y -
numerische Arrays zu berechnen inverse Tangens
Original:
numeric arrays to compute inverse tangent of
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
vy, vx -
Werte zur Berechnung des Arkustangens
Original:
values to compute inverse tangent of
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[Bearbeiten]Rückgabewert

Ein numerisches Array mit den Ergebnissen der Berechnung des Arkustangens .
Original:
A numeric array containing the results of computation of inverse tangent.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[Bearbeiten]Notes

Unqualifizierte Funktion (atan2) verwendet wird, um die Berechnung auszuführen. Wenn diese Funktion nicht verfügbar ist, wird std::atan2 verwendet wird wegen Argument abhängig Lookup .
Original:
Unqualified function (atan2) is used to perform the computation. If such function is not available, std::atan2 is used due to argument dependent lookup.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Die Funktion kann mit dem Rückgabetyp anders std::valarray umgesetzt werden. In diesem Fall weist die Ersetzungsart die folgenden Eigenschaften:
Original:
The function can be implemented with the return type different from std::valarray. In this case, the replacement type has the following properties:
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[Bearbeiten]Beispiel

[Bearbeiten]Siehe auch

Arcustangens mit Schildern Quadranten bestimmen
Original:
arc tangent, using signs to determine quadrants
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(Funktion)[edit]
close