The Wayback Machine - https://web.archive.org/web/20170726063739/http://ja.cppreference.com/w/cpp/numeric/valarray/pow
名前空間
変種
操作

std::pow<div class="t-tr-text">(スタンダード:: 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>

提供: cppreference.com
< cpp‎ | numeric‎ | valarray

 
 
ニューメリックスライブラリ
一般的な数学関数
浮動小数点環境
複素数
数値配列
擬似乱数生成
コンパイル時有理数演算(C++11)
汎用の数値演算
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
 
 
Defined 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)
電力の値を発生させ.
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)
数値配列の各要素の値を計算base数値配列expから対応する要素によって指定された累乗した.
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.
base.size()!= exp.size()場合の動作は未定義です.
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)
電源baseに引き上げ数値配列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 Google Translate.
You can help to correct and verify the translation. Click here for instructions.
3)
数値配列vbaseの要素によって定義された累乗しexpの値を計算.
Original:
Computes the values of vbase raised to the power defined by the elements in 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.

目次

[編集]パラメータ

base -
ベースの値を含む数値配列
Original:
numeric array containing the values of the base
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
exp -
指数の値を含む数値配列
Original:
numeric array containing the values of the exponent
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
vbase -
ベースを定義する値
Original:
a value defining the base
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
vexp -
指数を定義する値
Original:
a value defining the exponent
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[編集]値を返します

べき乗の結果を含む数値配列.
Original:
A numeric array containing the results of exponentiation.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[編集]ノート

修飾されていない機能(pow)計算を実行するために使用されます。そのような機能が利用できない場合、std::powは、引数依存の照合のために使用され.
Original:
Unqualified function (pow) is used to perform the computation. If such function is not available, std::pow 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.
関数はstd::valarrayから別の戻り値型で実装することができます。この場合、交換型は、次のプロパティがあります
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.
  • constのすべてstd::valarrayメンバ関数が用意されています.
    Original:
    All const member functions of std::valarray are provided.
    The text has been machine-translated via Google Translate.
    You can help to correct and verify the translation. Click here for instructions.
  • std::valarraystd::slice_arraystd::gslice_arraystd::mask_arraystd::indirect_array交換タイプから構築することができます.
    Original:
    std::valarray, std::slice_array, std::gslice_array, std::mask_array and std::indirect_array can be constructed from the replacement type.
    The text has been machine-translated via Google Translate.
    You can help to correct and verify the translation. Click here for instructions.
  • タイプconststd::valarray&の引数を受け付ける機能は、すべての交換タイプを受け入れる必要があります.
    Original:
    All functions accepting a arguments of type conststd::valarray& should also accept the replacement type.
    The text has been machine-translated via Google Translate.
    You can help to correct and verify the translation. Click here for instructions.
  • タイプconststd::valarray&の2つの引数を受け入れるすべての機能がconststd::valarray&と交換タイプのすべての組み合わせを受け入れるべき.
    Original:
    All functions accepting two arguments of type conststd::valarray& should accept every combination of conststd::valarray& and the replacement type.
    The text has been machine-translated via Google Translate.
    You can help to correct and verify the translation. Click here for instructions.

[編集]

[編集]参照

与えられた電力(xy)に番号を発生させます
Original:
raises a number to the given power (xy)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(関数)[edit]
close