std::exp2
提供: cppreference.com
![]() |
このページは、Google 翻訳を使って英語版から機械翻訳されました。
翻訳には誤りや奇妙な言い回しがあるかもしれません。文章の上にポインタをおくと、元の文章が見れます。誤りを修正して翻訳を改善する手助けをしてください。翻訳についての説明は、ここをクリックしてください。 |
ヘッダ <cmath> で定義
|
||
double exp2( double n ); |
(C++11およびそれ以降) | |
float exp2( float n ); |
(C++11およびそれ以降) | |
long double exp2( long double n ); |
(C++11およびそれ以降) | |
double exp2( Integral n ); |
(C++11およびそれ以降) | |
計算し2は、与えられた電力
n
に引き上げOriginal:
Computes 2 raised to the given power
n
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.
[編集] パラメータ
n | - | 浮動小数点値
Original: 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. |
[編集] 値を返します
2に引き上げ
n
(すなわち2n
)Original:
2 raised to the
n
(i.e. 2n
)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.
結果は、基になる型には大きすぎる場合、範囲エラーが発生し、HUGE_VALが返されます.
Original:
If the result is too large for the underlying type, range error occurs and HUGE_VAL is returned.
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 の x 乗 (ex) を計算します (関数) | |
(C++11) |
指定された数値の2を底とする対数 (log2(x)) を計算します (関数) |
(e を底とする) 自然対数 (ln(x)) を計算します (関数) | |
x の y 乗 (xy) を計算します (関数) | |