在线文档教程
C++
数字 | Numerics

std::ilogb

STD::ilogb

Defined in header
int ilogb( float arg (1)(since C++11)
int ilogb( double arg (2)(since C++11)
int ilogb( long double arg (3)(since C++11)
int ilogb( Integral arg (4)(since C++11)
#define FP_ILOGB0 /*implementation-defined*/(5)(since C++11)
#define FP_ILOGBNAN /*implementation-defined*/(6)(since C++11)

1-3%29从浮点参数中提取无偏指数的值。arg,并将其返回为有符号整数值。

4%29一组过载或接受任意参数的函数模板积分型等效于%282%29%28的参数转换为double29%。

5%29扩展到整数常量表达式,其值为INT_MIN-INT_MAX...

6%29扩展到整数常量表达式,其值为INT_MIN+INT_MAX...

形式上,无偏指数是对数的整体。

r arg作为符号整值,用于非零arg,在哪里r是std::numeric_limits<T>::radix和T的浮点类型。arg...

参数

arg-floating point value

返回值

如果没有错误发生,则无偏指数arg作为带符号的int值返回。

如果arg是零,FP_ILOGB0会被归还。

如果arg是无限的,INT_MAX会被归还。

如果arg是南人FP_ILOGBNAN会被归还。

如果正确的结果大于INT_MAX或小于INT_MIN,则返回值未指定。

错误处理

错误按数学[医]错误处理...

在以下情况下可能会发生域错误或范围错误。arg是零,无限,或南。

如果正确的结果大于INT_MAX或小于INT_MIN,可能会发生域错误或范围错误。

如果实现支持ieee浮点算法%28IEC 60559%29,

  • 如果正确的结果大于INT_MAX或小于INT_MIN,,,FE_INVALID是被抚养的。

  • 如果arg是±0,±∞,或NaN,FE_INVALID是被抚养的。

  • 在所有其他情况下,结果都是精确的%28。FE_INEXACT从来没有提高过%29和当前舍入模式被忽略

注记

如果arg不是零、无限或nn,则返回的值与static_cast<int>(std::logb(arg))...

POSIX要求,则域错误将发生在以下情况下:arg为零、无穷大、nn或如果正确的结果超出了int...

POSIX还要求,在符合xsi的系统上,当正确的结果大于INT_MAXINT_MAX,当正确的结果小于INT_MININT_MIN...

正确的结果可以表示为int所有已知的实现。如果要发生溢出,INT_MAX必须少于LDBL_MAX_EXP*log2(FLT_RADIX)INT_MIN必须大于LDBL_MIN_EXP-LDBL_MANT_DIG)*log2(FLT_RADIX)...

返回的指数的值。std::ilogb总是比指数小1。std::frexp由于不同的归一化要求:对于指数e归还std::ilogbArg%2Ar-e

介于11之间r%28通常介于12%29,但对于指数e归还std::frexpArg%2A2-e

介于0.51...

比较了不同的浮点分解函数。

二次

#include <iostream> #include <cmath> #include <limits> #include <cfenv> #pragma STDC FENV_ACCESS ON int main() { double f = 123.45; std::cout << "Given the number " << f << " or " << std::hexfloat << f << std::defaultfloat << " in hex,\n"; double f3; double f2 = std::modf(f, &f3 std::cout << "modf() makes " << f3 << " + " << f2 << '\n'; int i; f2 = std::frexp(f, &i std::cout << "frexp() makes " << f2 << " * 2^" << i << '\n'; i = std::ilogb(f std::cout << "logb()/ilogb() make " << f/std::scalbn(1.0, i) << " * " << std::numeric_limits<double>::radix << "^" << std::ilogb(f) << '\n'; // error handling std::feclearexcept(FE_ALL_EXCEPT std::cout << "ilogb(0) = " << std::ilogb(0) << '\n'; if(std::fetestexcept(FE_INVALID)) std::cout << " FE_INVALID raised\n"; }

二次

可能的产出:

二次

Given the number 123.45 or 0x1.edccccccccccdp+6 in hex, modf() makes 123 + 0.45 frexp() makes 0.964453 * 2^7 logb()/ilogb() make 1.92891 * 2^6 ilogb(0) = -2147483648 FE_INVALID raised

二次

另见

frexpdecomposes a number into significand and a power of 2 (function)
logb (C++11)extracts exponent of the number (function)
scalbnscalbln (C++11)(C++11)multiplies a number by FLT_RADIX raised to a power (function)

c为ilogb编写的文件

© cppreference.com

在CreativeCommonsAttribution下授权-ShareAlike未移植许可v3.0。

http://en.cppreference.com/w/cpp/数值/数学/ilogb