pow (<valarray>)
在輸入 valarrays 和常數的項目,並傳回項目與基底相等。valarray 的輸入項目指定或常數會提升為指數。valarray 的輸入或常數之項目所指定的 valarray。
template<class Type>
valarray<Type> pow(
const valarray<Type>& _Left,
const valarray<Type>& _Right
);
template<class Type>
valarray<Type> pow(
const valarray<Type>& _Left,
const Type& _Right
);
template<class Type>
valarray<Type> pow(
const Type& _Left,
const valarray<Type>& _Right
);
參數
_Left
項目提供可以 exponentiated 的每個項目的基底 valarray 的輸入。_Right
項目會提供每個項目的能力可以 exponentiated valarray 的輸入。
傳回值
項目 I 相等的 valarray:
_Left [ I ] 會提升為第一個樣板函式的電源 _Right [ I ]。
_Left [ I ] 會提升為第二個樣板函式的電源 _Right 。
_Left 引發至第三個樣板函式的電源 _Right [ I ]。
備註
如果 _Left 和 _Right 的項目有不同的數值,則結果會是未定義的。
範例
#include <valarray>
#include <iostream>
#include <iomanip>
int main( )
{
using namespace std;
double pi = 3.14159265359;
int i;
valarray<double> vabase ( 6 );
for ( i = 0 ; i < 6 ; i++ )
vabase [ i ] = i/2;
valarray<double> vaexp ( 6 );
for ( i = 0 ; i < 6 ; i++ )
vaexp [ i ] = 2 * i;
valarray<double> va2 ( 6 );
cout << "The initial valarray for the base is: ( ";
for ( i = 0 ; i < 6 ; i++ )
cout << vabase [ i ] << " ";
cout << ")." << endl;
cout << "The initial valarray for the exponent is: ( ";
for ( i = 0 ; i < 6 ; i++ )
cout << vaexp[ i ] << " ";
cout << ")." << endl;
va2 = pow ( vabase , vaexp );
cout << "The power of (n/2) * exp (2n) for n = 0 to n = 5 is: \n";
for ( i = 0 ; i < 6 ; i++ )
cout << "n = " << i << "\tgives " << va2 [ i ] << endl;
}
需求
標題: <valarray>
命名空間: std