该函数计算给定数字加一的自然对数。
假设一个数字是 'x':
log1p(x) = log(1+x);
用法
float log1p(float x);
double log1p(double x);
long double log1p(long double x);
double log1p(integral x);
注意:return_type 可以是 float、double 或 long double。
参数
x:要计算哪个对数的值。
返回值
参数 | 返回值 |
---|---|
x>0 | Positive |
x=0 | zero |
0>x>-1 | Negative |
x= -1 | -无穷大 |
x<-1 | 不是数字(nan) |
例子1
当 x 的值大于零时,让我们看一个简单的例子。
#include <iostream>
#include<math.h>
using namespace std;
int main()
{
int x=10;
std::cout << "Value of x is:" <<x <<std::endl;
cout<<"log1p(x) = "<<log1p(x);
return 0;
}
输出:
Value of x is:10 log1p(x) = 2.3979
在此示例中,log1p() 函数计算 x 大于零时的对数值。
例子2
让我们看一个简单的例子,当 x 的值为零时
#include <iostream>
#include<math.h>
using namespace std;
int main()
{
int x=0;
std::cout << "Value of x is:" <<x <<std::endl;
cout<<"log1p(x) = "<<log1p(x);
return 0;
}
输出:
Value of x is:0 log1p(x) = 0
在本例中,log1p() 函数计算 x 的值为零时的对数值。
例子3
当 x 的值小于零时,让我们看一个简单的例子。
#include <iostream>
#include<math.h>
using namespace std;
int main()
{
float x= -0.5;
std::cout << "Value of x is:" <<x <<std::endl;
cout<<"log1p(x) = "<<log1p(x);
return 0;
}
输出:
Value of x is:-0.5 log1p(x) = -0.693147
在本例中,log1p() 函数计算 x 小于零时的对数值。
示例 4
让我们看一个简单的例子,当 x 的值为 -1 时。
#include <iostream>
#include<math.h>
using namespace std;
int main()
{
int x= -1;
std::cout << "Value of x is:" <<x <<std::endl;
cout<<"log1p(x) = "<<log1p(x);
return 0;
}
输出:
Value of x is:-1 log1p(x) = -inf
在本例中,log1p() 函数计算 x 的值为 -1 时的对数值。
例 5
让我们看一个简单的例子,当 x 的值小于 -1 时。
#include <iostream>
#include<math.h>
using namespace std;
int main()
{
int x= -3;
std::cout << "Value of x is:" <<x <<std::endl;
cout<<"log1p(x) = "<<log1p(x);
return 0;
}
输出:
Value of x is:-3 log1p(x) = -nan
在本例中,log1p() 函数计算 x 的值小于 -1 时的对数值。
相关用法
- C++ Math log10()用法及代码示例
- C++ Math log2()用法及代码示例
- C++ Math log()用法及代码示例
- C++ Math logb()用法及代码示例
- 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 log1p()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。