该函数计算给定数字的对数,使用 FLT_RADX 作为对数的底数。
一般FLT_RADX等于2,所以logb()等价于log2()。
用法
假设一个数字是 'x'。语法是:
float logb(float x);
double logb(double x);
long double logb(long double x);
double logb(integral x);
参数
x:要计算其对数的值。
返回值
它返回 x 的基数 FLT_RADX 对数。
如果 x 为零,则可能会导致域或极点错误,具体取决于库实现。
例子1
让我们看一个简单的例子,当 x 的值是整数类型时。
#include <iostream>
#include<math.h>
using namespace std;
int main()
{
int x=6;
std::cout << "Value of x is:" <<x<< std::endl;
cout<<"logarithm value of x is:"<<logb(x);
return 0;
}
输出:
Value of x is:6 logarithm value of x is:2
在本例中,x 的值为 6。logb() 函数计算 x 以 FLT_RADX 为底的对数。
例子2
让我们看一个简单的例子,当 x 的值是浮点类型时。
#include <iostream>
#include<math.h>
using namespace std;
int main()
{
float x=10.4;
std::cout << "Value of x is:" <<x<< std::endl;
cout<<"logarithm value of x is:"<<logb(x);
return 0;
}
输出:
Value of x is:10.4 logarithm value of x is:3
在本例中,x 的值为 10.4。 logb() 函数计算 x 基数 FLT_RADX 的对数。
例子3
让我们看看 x 的值为零时的简单示例。
#include <iostream>
#include<math.h>
using namespace std;
int main()
{
int x=0;
std::cout << "Value of x is :" <<x<< std::endl;
cout<<"logarithm value of x is:"<<logb(x);
return 0;
}
输出:
Value of x is :0 logarithm value of x is:-inf
相关用法
- C++ Math log2()用法及代码示例
- C++ Math log()用法及代码示例
- C++ Math log10()用法及代码示例
- C++ Math log1p()用法及代码示例
- C++ Math llround()用法及代码示例
- C++ Math less()用法及代码示例
- C++ Math lgamma()用法及代码示例
- C++ Math lround()用法及代码示例
- C++ Math lrint()用法及代码示例
- C++ Math llrint()用法及代码示例
- C++ Math scalbn()用法及代码示例
- C++ Math acosh()用法及代码示例
- C++ Math asinh()用法及代码示例
- C++ Math isgreater()用法及代码示例
- C++ Math fabs()用法及代码示例
- C++ Math islessgreater()用法及代码示例
- C++ Math nearbyint()用法及代码示例
- C++ Math tan()用法及代码示例
- C++ Math nextafter()用法及代码示例
- C++ Math fdim()用法及代码示例
注:本文由纯净天空筛选整理自 C++ Math logb()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。