C++ 中的ilogb() 函数返回|x| 的对数的整数部分,使用FLT_RADIX 作为对数的底。
这是在<cmath> 头文件中定义的。
数学上,
x = significand * FLT_RADIXexponent
significand
是 [1.0, 2.0) 范围内的浮点值,x 是传递给 ilogb() 的参数,exponent
是 ilogb() 返回的整数值。 FLT_RADIX
的值一般为2。
ilogb() 返回的值比 frexp() 函数生成的 index 小 1,因为有效数字在 [1.0, 2.0) 范围内,而不是 frexp() 中的 [0.5, 1.0)。
ilogb() 原型 [从 C++ 11 标准开始]
int ilogb (double x); int ilogb (float x); int ilogb (long double x); int ilogb (T x); // For integral type
参数:
ilogb() 函数采用单个参数,计算其 ilogb。
返回:
ilogb() 函数返回 |x| 的对数的整数部分,使用 FLT_RADIX 作为对数的底。
- 如果参数为 0,则返回 FP_LOGB0。
- 如果参数为 NaN,则返回 FP_LOGBNAN。
- 如果参数是无限的,则返回INT_MAX。
示例 1:ilogb() 函数在 C++ 中如何工作?
#include <iostream>
#include <cmath>
#include <cfloat>
using namespace std;
int main()
{
int result;
double significand;
double x = 16.81;
result = ilogb(x);
significand = x / pow(FLT_RADIX, result);
cout << "ilogb (" << x << ") = " << result << endl;
cout << x << " = " << significand << " * " << FLT_RADIX << "^" << result << endl << endl;
return 0;
}
运行程序时,输出将是:
ilogb (16.81) = 4 16.81 = 1.05062 * 2^4
示例 2:ilogb() 具有整数类型的函数
#include <iostream>
#include <cmath>
#include <cfloat>
using namespace std;
int main()
{
int result, x = 19;
result = ilogb(x);
double significand = x/pow(FLT_RADIX,result);
cout << "ilogb (" << x << ") = " << result << endl;
cout << x << " = " << significand << " * " << FLT_RADIX << "^" << result << endl << endl;
return 0;
}
运行程序时,输出将是:
ilogb (19) = 4 19 = 1.1875 * 2^4
相关用法
- C++ ilogb()用法及代码示例
- C++ is_unsigned用法及代码示例
- C++ is_fundamental用法及代码示例
- C++ iomanip setbase()用法及代码示例
- C++ isdigit()用法及代码示例
- C++ ios eof()用法及代码示例
- C++ ios manipulators boolalpha()用法及代码示例
- C++ ios Scientific用法及代码示例
- C++ ios manipulators left()用法及代码示例
- C++ iswdigit()用法及代码示例
- C++ is_scalar用法及代码示例
- C++ ios fixed用法及代码示例
- C++ ios manipulators dec()用法及代码示例
- C++ is_pointer用法及代码示例
- C++ is_polymorphic用法及代码示例
- C++ isalpha()用法及代码示例
- C++ ios noshowbase用法及代码示例
- C++ ios manipulators hex()用法及代码示例
- C++ ios showpoint用法及代码示例
- C++ iomanip setfill用法及代码示例
注:本文由纯净天空筛选整理自 C++ ilogb()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。