tgamma() 函数计算传递给函数的参数的伽马函数。
假设一个数字是 x:
用法
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 tan()用法及代码示例
- C++ Math trunc()用法及代码示例
- C++ Math tanh()用法及代码示例
- C++ Math scalbn()用法及代码示例
- C++ Math acosh()用法及代码示例
- C++ Math asinh()用法及代码示例
- C++ Math isgreater()用法及代码示例
- C++ Math fabs()用法及代码示例
- C++ Math islessgreater()用法及代码示例
- C++ Math log2()用法及代码示例
- C++ Math nearbyint()用法及代码示例
- C++ Math log()用法及代码示例
- C++ Math nextafter()用法及代码示例
- C++ Math fdim()用法及代码示例
- C++ Math isfinite()用法及代码示例
- C++ Math erfc()用法及代码示例
- C++ Math sinh()用法及代码示例
- C++ Math scalbln()用法及代码示例
- C++ Math cosh()用法及代码示例
- C++ Math fma()用法及代码示例
注:本文由纯净天空筛选整理自 C++ Math tgamma()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。