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