lgamma
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <math.h> 中定义
|
||
float lgammaf( float arg ); |
||
double lgamma( double arg ); |
||
long double lgammal( long double arg ); |
||
目录 |
[编辑] 参数
arg | - | 浮点值
|
[编辑] 返回值
的
e|∫∞
0targ-1
e-t dt|.
arg
的伽马函数的对数的值,也就是loge|∫∞
0targ-1
e-t dt|.
原文:
The value of the logarithm of the gamma function of
e|∫∞
0targ-1
e-t dt|.
arg
, that is loge|∫∞
0targ-1
e-t dt|.
是一个自然数,如果
arg
lgamma(arg)是对数的阶乘arg-1
.原文:
If
arg
is a natural number, lgamma(arg) is the logarithm of the factorial of arg-1
.[编辑] 例外
如果
arg
是零或负的整数,极可能发生错误,FE_INVALID或FE_DIVBYZERO可以提高.原文:
If
arg
is zero or a negative integer, pole error may occur and FE_INVALID or FE_DIVBYZERO may be raised.arg
过大,范围可能发生错误,FE_OVERFLOW可能会引发.原文:
If
arg
is too large, range error may occur and FE_OVERFLOW may be raised.[编辑] 注释
POSIX specification还要求每个执行lgamma存储在外部变量
arg
的gamma函数的signgam
的符号.原文:
POSIX specification additionally requires that each execution of lgamma stores the sign of the gamma function of
arg
in the external variable signgam
.[编辑] 另请参阅
(C99) |
伽玛函数 (函数) |
C++ documentation for lgamma
|
[编辑] 外部链接
Weisstein, Eric W. "Log Gamma Function.",从MathWorld - Wolfram网络资源.
原文:
Weisstein, Eric W. "Log Gamma Function." From MathWorld--A Wolfram Web Resource.