当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python SciPy special.polygamma用法及代码示例


本文简要介绍 python 语言中 scipy.special.polygamma 的用法。

用法:

scipy.special.polygamma(n, x)#

多伽马函数。

定义为 其中 digamma 函数。有关详细信息,请参阅 [dlmf]。

参数

n array_like

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

x array_like

实值输入

返回

ndarray

函数结果

参考

[dlmf]

NIST,数学函数数字 Library ,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)

相关用法


注:本文由纯净天空筛选整理自scipy.org大神的英文原创作品 scipy.special.polygamma。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。