C++ Math tgamma()函数

C++ Math tgamma()函数

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

假设一个数字为 x

C++ Math tgamma()函数

语法

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。

Camera课程

Python教程

Java教程

Web教程

数据库教程

图形图像教程

办公软件教程

Linux教程

计算机教程

大数据教程

开发工具教程