std::expm1
提供: cppreference.com
![]() |
このページは、Google 翻訳を使って英語版から機械翻訳されました。
翻訳には誤りや奇妙な言い回しがあるかもしれません。文章の上にポインタをおくと、元の文章が見れます。誤りを修正して翻訳を改善する手助けをしてください。翻訳についての説明は、ここをクリックしてください。 |
Defined in header <cmath>
|
||
float expm1( float arg ); |
(C++11およびそれ以降) | |
double expm1( double arg ); |
(C++11およびそれ以降) | |
long double expm1( long double arg ); |
(C++11およびそれ以降) | |
double expm1( Integral arg ); |
(C++11およびそれ以降) | |
E(オイラー数、
2.7182818
)所与の電力arg
、マイナス1に引き上げを計算します。 std::exp(arg)-1がゼロに近い場合、この関数はarg
表現よりも正確です.Original:
Computes the e (Euler's number,
2.7182818
) raised to the given power arg
, minus 1. This function is more accurate than the expression std::exp(arg)-1 if arg
is close to zero.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.
[編集] パラメータ
arg | - | 浮動小数点値
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. |
[編集] 値を返します
earg
-1
結果は、基になる型には大きすぎる場合、範囲エラーが発生し、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を与えられた電力(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. (関数) | |
(C++11) |
自然対数(ベースへ E)1のプラス、与えられた数 Original: natural logarithm (to base e) of 1 plus the given number The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (関数) |
(C++11) |
戻り 2、与えられた電力(2x)に引き上げた Original: returns 2 raised to the given power (2x) The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (関数) |