函数
<cmath> <ctgmath>

logb

     double logb  (double x);      float logbf (float x);long double logbl (long double x);
     double logb (double x);      float logb (float x);long double logb (long double x);     double logb (T x);           // additional overloads for integral types
计算浮点底数对数
返回 |x| 的对数,使用 FLT_RADIX 作为对数的底数。

在大多数平台上,FLT_RADIX2,因此对于正值,该函数等价于 log2

头文件 <tgmath.h> 提供了此函数的类型通用宏版本。
此头文件(<cmath>)中为整数类型提供了额外的重载:这些重载在计算前会有效地将 x 转换为 double(为任何整数类型T 定义)。

参数

x
要计算其对数的值。

返回值

FLT_RADIX 为底的 x 的对数。
如果 x 为零,可能会导致定义域错误极点错误(或没有错误,具体取决于库的实现)。

如果发生定义域错误
- 并且 math_errhandling 设置了 MATH_ERRNO:全局变量 errno 会被设置为 EDOM
- 并且 math_errhandling 设置了 MATH_ERREXCEPT:将引发 FE_INVALID

如果发生极点错误
- 并且 math_errhandling 设置了 MATH_ERRNO:全局变量 errno 被设置为 ERANGE
- 并且 math_errhandling 设置了 MATH_ERREXCEPT:将引发 FE_DIVBYZERO

示例

1
2
3
4
5
6
7
8
9
10
11
12
/* logb example */
#include <stdio.h>      /* printf */
#include <math.h>       /* logb */

int main ()
{
  double param, result;
  param = 1024.0;
  result = logb (param);
  printf ("logb (%f) = %f.\n", param, result );
  return 0;
}

输出

logb (1024.000000) = 10.000000


另见