std::logb
STD::LOG b
Defined in header | | |
---|---|---|
float logb( float arg | (1) | (since C++11) |
double logb( double arg | (2) | (since C++11) |
long double logb( long double arg | (3) | (since C++11) |
double logb( Integral arg | (4) | (since C++11) |
1-3%29从浮点参数中提取无偏基无关指数的值。arg
,并将其作为浮点值返回。
4%29一组过载或接受任意参数的函数模板积分型等效于%282%29%28的参数转换为double
29%。
形式上,无偏指数是对数的符号整数部分。
这个函数返回的r arg%28作为浮点值%29,用于非零arg,其中r是std::numeric_limits<T>::radix和T的浮点类型。arg.如果arg是低于正常值的,它被当作是规范化的。
参数
arg | - | floating point value |
---|
返回值
如果没有错误发生,则无偏指数arg
作为有符号浮点值返回。
如果发生域错误,则返回实现定义的值。
如果发生极差,-HUGE_VAL
,,,-HUGE_VALF
,或-HUGE_VALL
会被归还。
错误处理
错误按数学[医]错误处理...
在以下情况下可能会发生域或范围错误。arg
是零。
如果实现支持ieee浮点算法%28IEC 60559%29,
- 如果
arg
是±0,-∞返回FE_DIVBYZERO
是被抚养的。
- 如果
arg
是±∞,+∞返回
- 如果
arg
是南,南回来了。
- 在所有其他情况下,结果都是精确的%28。
FE_INEXACT
从来没有提高过%29和当前舍入模式被忽略
注记
POSIX要求出现极错误的情况是:arg
是±0。
返回的指数的值。std::logb
总是比指数小1。std::frexp
由于不同的归一化要求:对于指数e
归还std::logb
Arg%2Ar-e
介于1
到1
之间r
%2
8通常介于1
和2
%2
9,但对于指数e
归还std::frexp
Ar
g%2
A2
-e
介于0.5
和1
...
例
比较了不同的浮点分解函数。
二次
#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 << "logb(0) = " << std::logb(0) << '\n';
if(std::fetestexcept(FE_DIVBYZERO))
std::cout << " FE_DIVBYZERO 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
logb(0) = -Inf
FE_DIVBYZERO raised
二次
另见
frexp | decomposes a number into significand and a power of 2 (function) |
---|---|
ilogb (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日志文件b
© cppreference.com
在CreativeCommonsAttribution下授权-ShareAlike未移植许可v3.0。