Namensräume
Varianten

std::pow<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

<metanoindex/>

 
 
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
 
 
<tbody> </tbody>
definiert in Header <valarray>
template< class T > valarray<T> pow( const valarray<T>& base, const valarray<T>& exp );
(1)
template< class T > valarray<T> pow( const valarray<T>& base, const T& vexp );
(2)
template< class T > valarray<T> pow( const T& vbase, const valarray<T>& exp );
(3)
Löst ein Wert in eine Potenz .
Original:
Raises a value to a power.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
1)
Berechnet die Werte eines jeden Elements in der numerischen Array base der Kraft durch das entsprechende Element aus der numerischen Array spezifiziert exp angehoben .
Original:
Computes the values of each element in the numeric array base raised to the power specified by the corresponding element from the numeric array exp.
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 base.size() != exp.size() undefined .
Original:
The behavior is undefined if base.size() != exp.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 die Werte eines jeden Elements in der numerischen Array base potenziert vexp .
Original:
Computes the values of each element in the numeric array base raised to the power vexp.
The text has been machine-translated via