scipy.special.gammaln#
- scipy.special.gammaln(x, out=None) = <ufunc 'gammaln'>#
伽马函数绝对值的对数。
定义为
\[\ln(\lvert\Gamma(x)\rvert)\]其中 \(\Gamma\) 是伽玛函数。有关伽玛函数的更多详情,请参见 [dlmf]。
- 参数:
- xarray_like
实际参数
- 出ndarray,可选
函数结果的可选输出数组
- 返回:
- 标量或ndarray
绝对值伽玛的对数的值
注释
它与Python标准库函数
math.lgamma
的功能相同。当与
gammasgn
结合使用时,此函数在实轴上的对数空间中工作时非常有用,无需通过关系exp(gammaln(x)) = gammasgn(x) * gamma(x)
处理复数。对于复数值的对数伽玛函数,请使用
loggamma
而不是gammaln
。参考文献
[dlmf]NIST 数学函数数字图书馆 https://dlmf.nist.gov/5
示例
>>> import numpy as np >>> import scipy.special as sc
它有两个正零。
>>> sc.gammaln([1, 2]) array([0., 0.])
它在非正整数处有极点。
>>> sc.gammaln([0, -1, -2, -3, -4]) array([inf, inf, inf, inf, inf])
它渐近地趋近于
x * log(x)
(斯特林公式)。>>> x = np.array([1e10, 1e20, 1e40, 1e80]) >>> sc.gammaln(x) array([2.20258509e+11, 4.50517019e+21, 9.11034037e+41, 1.83206807e+82]) >>> x * np.log(x) array([2.30258509e+11, 4.60517019e+21, 9.21034037e+41, 1.84206807e+82])