frexp
提供: cppreference.com
![]() |
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
Defined in header <math.h>
|
||
float frexpf( float arg, int* exp ); |
||
double frexp( double arg, int* exp ); |
||
long double frexpl( long double arg, int* exp ); |
||
仮数部と指数部に指定された浮動小数点値は、分解し.
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. (関数) | |
(C99) |
数値の指数を抽出します 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. (関数) |
(C99) |
数値の指数を抽出します 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. (関数) | |
C++ documentation for frexp
|