C++ Math logb()函数
该函数使用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()函数计算以FLT_RADX为底的x的对数。
示例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()函数计算以FLT_RADX为底的x的对数。
示例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