当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ Math tgamma()用法及代码示例


tgamma() 函数计算传递给函数的参数的伽马函数。

假设一个数字是 x:

C++ Math tgamma() function

用法

float tgamma(float x);
double tgamma(double x);
long double tgamma(long double x);
double tgamma(double x);

参数

x: 它是一个浮点值。

返回值

它返回 x 的伽马函数值。

参数 返回值
x = ±0 ±∞
x = -ve nan
x = -∞ nan
x = +∞ +∞
x = 南 nan

例子1

让我们看看 x 的值为零时的简单示例。

#include <iostream>
#include<math.h>
using namespace std;
int main()
{
     float x= 0.0;
     cout<<"Value of x is:"<<x<<'\n';
     cout<<"tgamma(x):"<<tgamma(x);
     return 0;}

输出:

Value of x is:0
tgamma(x):inf

在上面的例子中,x 的值为零。因此,函数 tgamma() 返回 +∞。

例子2

让我们看一个简单的例子,当 x 的值为负时。

#include <iostream>
#include<math.h>
using namespace std;
int main()
{
     int x= -6;
     cout<<"Value of x is:"<<x<<'\n';
     cout<<"tgamma(x):"<<tgamma(x);
     return 0;
}

输出:

Value of x is:-6
tgamma(x):nan

在上面的例子中,x 的值是一个负整数。因此,函数 tgamma() 返回 nan。

例子3

当 x 的值为 -∞ 时,让我们看一个简单的例子。

#include <iostream>
#include<math.h>
using namespace std;
int main()
{
     float x= -9.0/0.0;
     cout<<"Value of x is:"<<x<<'\n';
     cout<<"tgamma(x):"<<tgamma(x);
     return 0;
}

输出:

Value of x is:-inf
tgamma(x):nan

在上面的例子中,x 的值 -∞。因此,函数 tgamma() 返回 nan。

示例 4

让我们看一个简单的例子,当 的值为 +∞ 时。

#include <iostream>
#include<math.h>
using namespace std;
int main()
{
     float x= 7.8/0.0;
     cout<<"Value of x is:"<<x<<'\n';
     cout<<"tgamma(x):"<<tgamma(x);
     return 0;
}

输出:

Value of x is:inf
tgamma(x):inf

在上面的例子中,x 的值为 +∞。因此,函数 tgamma() 返回 +∞。

例 5

让我们看一个简单的例子,当 x 的值为 nan 时。

#include <iostream>
#include<math.h>
using namespace std;
int main()
{
     float x= 0.0/0.0;
     cout<<"Value of x is:"<<x<<'\n';
     cout<<"tgamma(x):"<<tgamma(x);
    return 0;
}

输出:

Value of x is:-nan
tgamma(x):-nan

在上面的例子中,x 的值为 nan。因此,函数 tgamma() 返回 nan。






相关用法


注:本文由纯净天空筛选整理自 C++ Math tgamma()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。