scipy.special.
polygamma#
- scipy.special.polygamma(n, x)[源代码]#
多伽马函数。
定义为 \(\psi^{(n)}(x)\),其中 \(\psi\) 是
digamma
函数。 详情请参见 [dlmf]。- 参数:
- n类数组
digamma 函数的导数阶数;必须为整数
- x类数组
实数值输入
- 返回:
- ndarray
函数结果
另请参阅
参考文献
[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)