std::frexp
提供: cppreference.com
![]() |
このページは、Google 翻訳を使って英語版から機械翻訳されました。
翻訳には誤りや奇妙な言い回しがあるかもしれません。文章の上にポインタをおくと、元の文章が見れます。誤りを修正して翻訳を改善する手助けをしてください。翻訳についての説明は、ここをクリックしてください。 |
Defined in header <cmath>
|
||
float frexp( float arg, int* exp ); |
||
double frexp( double arg, int* exp ); |
||
long double frexp( long double arg, int* exp ); |
||
double frexp( Integral arg, int* exp ); |
(C++11およびそれ以降) | |
仮数部と指数部に指定された浮動小数点値は、分解し.
Original:
Decomposes given floating point value to significand and exponent.
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. |
exp | - | に指数を格納するための整数値へのポインタ
Original: pointer to integer value to store the exponent to The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[編集] 値を返します
[0.5; 1)
の範囲内で指定された浮動小数点数の仮数。指数はexp
が指す整数値に入れられ.Original:
significand of the given floating point number in the range of
[0.5; 1)
. The exponent is put into integer value pointed to by exp
.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.
[編集] 参照
累乗し2によって数を乗算します Original: multiplies a number by 2 raised 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. (関数) | |
(C++11) |
数値の指数を抽出します Original: extracts exponent of the 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) |
数値の指数を抽出します Original: extracts exponent of the number The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (関数) |
数値は、整数部分と小数部分に分解する Original: decomposes a number into integer and fractional parts The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (関数) |