std::frexp
来自cppreference.com
![]() |
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
定义于头文件 <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 起) | |
分解浮点值尾数和指数.
[编辑] 参数
arg | - | |
exp | - |
[编辑] 返回值
有效位
[0.5; 1)
的范围内的给定的浮点数。该指数是把整数值指出,exp
.[编辑] 另请参阅
(函数) | |
(C++11) |
(函数) |
(C++11) |
(函数) |
分解一个数字的整数部分和小数部分 (函数) |