std::pow
提供: cppreference.com
![]() |
このページは、Google 翻訳を使って英語版から機械翻訳されました。
翻訳には誤りや奇妙な言い回しがあるかもしれません。文章の上にポインタをおくと、元の文章が見れます。誤りを修正して翻訳を改善する手助けをしてください。翻訳についての説明は、ここをクリックしてください。 |
ヘッダ <cmath> で定義
|
||
float pow( float base, float exp ); |
(1) | |
double pow( double base, double exp ); |
(2) | |
long double pow( long double base, long double exp ); |
(3) | |
Promoted pow( Arithmetic base, Arithmetic exp ); |
(4) | (C++11およびそれ以降) |
float pow( float base, int iexp ); |
(5) | (C++11以前) |
double pow( double base, int iexp ); |
(6) | (C++11以前) |
long double pow( long double base, int iexp ); |
(7) | (C++11以前) |
累乗し
4) base
の値を計算しexp
またはiexp
.Original:
Computes the value of
base
raised to the power exp
or iexp
.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
オーバーロードのセットまたは1-3で覆われていない算術型の引数のすべての組合せに対する関数テンプレート)。いずれかの引数が整数型を持つ場合、それはdoubleにキャストされます。いずれかの引数がlong doubleである場合、戻り値の型
Promoted
もlong doubleであり、それ以外の場合、戻り値の型は常にdoubleです.Original:
A set of overloads or a function template for all combinations of arguments of arithmetic type not covered by 1-3). If any argument has integral type, it is cast to double. If any argument is long double, then the return type
Promoted
is also long double, otherwise the return type is always double.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
目次 |
[編集] パラメータ
base | - | 浮動小数点値としてベース
Original: base as floating point value The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
exp | - | 浮動小数点値として指数
Original: exponent as floating point value The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
iexp | - | 整数値として指数
Original: exponent as integer value The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[編集] 値を返します
base
累乗(exp
またはiexp
). Original:
base
raised by power (exp
or iexp
). The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
base
が0で、exp
より小さいか0に等しい場合、ドメインエラーが発生します。 NANはその場合に返されます.Original:
Domain error occurs if
base
is 0 and exp
is less than or equal to 0. NAN is returned in that case.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
base
が負であるとexp
が整数値でない場合は、ドメインエラーが発生します。 NANはその場合に返されます.Original:
Domain error occurs if
base
is negative and exp
is not an integer value. NAN is returned in that case.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
オーバーフローが発生した場合、範囲エラーが発生します。 HUGEVALはその場合に返されます.
Original:
Range error occurs if an overflow takes place. HUGEVAL is returned in that case.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[編集] ノート
pow(float, int)
返しfloatまで、C + +11(当たりの過負荷5)が、C + +11(当たりの過負荷4)から戻りdouble
Original:
pow(float, int)
returns float until C++11 (per overload 5) but returns double
since C++11 (per overload 4)The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[編集] 参照
戻り eを与えられた電力(ex)に引き上げた Original: returns e raised to the given power (ex) The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (関数) | |
計算する自然(底 E)対数(底へ E)(ln(x)) Original: computes natural (base e) logarithm (to base e) (ln(x)) The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (関数) | |
平方根は(√x)を計算します Original: computes square root (√x) The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (関数) | |
(C++11) |
立方根は(3√x)を計算します Original: computes cubic root (3√x) The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (関数) |
複雑な電力は、一方または両方の引数が複素数かもしれません Original: complex power, one or both arguments may be a complex number The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (関数テンプレート) | |
2 valarraysまたはvalarrayは、値への関数std::powを適用します Original: applies the function std::pow to two valarrays or a valarray and a value The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (関数テンプレート) |