当前位置: C语言 -- 标准库 -- <math.h> -- tgammaf

tgammaf函数


概要:
#include <math.h>
float tgammaf(float x);

描述:

该函数计算参数x的伽玛函数。

如果参数x为负数或者0,将可能发生域错误或者极点错误。

如果参数x太大,将发生范围错误(range error);如果参数x太小,将可能发生范围错误(range error)

伽玛函数的数学定义如下所示:

Γ( x ) = 0 t x - 1 e - t d t


参数:
float x

参数为一个float类型的浮点数。


返回值:

函数返回Γ(x)的值。


范例:
1 
2 
3 
4 
5 
6 
7 
8 
9 
10 
11 
12 
13 
14 
15 
16 
/*函数tgammaf范例*/

#include <math.h>
#include <stdio.h>

int main(void)
{
    float x = 9.0f;
    float y;

    y = tgammaf(x);
    printf("The gamma function of %.6f is %.6f.\n", x, y);

    return 0;
}

输出:

The gamma function of 9.000000 is 40320.000000.


相关内容:
tgamma double类型的伽玛函数。
tgammal long double类型的伽玛函数。