scipy.special.

polygamma#

scipy.special.polygamma(n, x)[源代码]#

多重伽马函数。

定义为 \(\psi^{(n)}(x)\) 其中 \(\psi\)digamma 函数。有关详细信息,请参阅 [dlmf]

参数:
narray_like

digamma 函数导数的阶数;必须是整数

xarray_like

实值输入

返回值:
ndarray

函数结果

另请参阅

digamma

参考

[dlmf]

NIST,数学函数数字图书馆,https://dlmf.nist.gov/5.15

范例

>>> from scipy import special
>>> x = [2, 3, 25.5]
>>> special.polygamma(1, x)
array([ 0.64493407,  0.39493407,  0.03999467])
>>> special.polygamma(0, x) == special.psi(x)
array([ True,  True,  True], dtype=bool)