C++ Math lgamma()函数
lgamma()函数计算传递给函数的参数的gamma函数的对数。
假设一个数字是 x :
语法
float lgamma(float x);
double lgamma(double x);
long double lgamma(long double x);
double lgamma(integral x);
参数
x :它是一个浮点数值。
返回值
它返回值x的伽玛函数的对数。
Parameter | Return value |
---|---|
x= 1 or x=2 | 0 |
x= ±0 | +∞ |
x= -ve integer or ±∞ | +∞ |
x= nan | nan |
示例1
让我们看一个简单的示例,当x的值为2时。
#include
#include
using namespace std;
int main()
{
int x=2;
cout<<"Value of x is : "<
输出:
Value of x is : 2
lgamma(x) :0
在上面的示例中,x的值是2。因此,函数lgamma()返回0值。
示例2
让我们看一个简单的示例,当x的值为0时。
#include
#include
using namespace std;
int main()
{
int x=0;
cout<<"Value of x is : "<
输出:
Value of x is : 0
lgamma(x) : inf
在上面的示例中,x的值为零。因此,lgamma()函数返回+∞。
示例3
让我们看一个简单的示例,当x的值为负整数时。
#include
#include
using namespace std;
int main()
{
int x= -5;
cout<<"Value of x is : "<
输出:
Value of x is : -5
lgamma(x) : inf
在上面的示例中,x的值是一个负整数。因此,函数lgamma()返回+∞。
示例4
让我们看一个简单的示例,当x的值为nan时。
#include
#include
using namespace std;
int main()
{
float x=sqrt(-6);
cout<<"Value of x is : "<
输出:
Value of x is : -nan
lgamma(x) :-nan
在上面的示例中,x的值为nan。因此,函数lgamma()返回nan。