本文简要介绍 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)
相关用法
- Python SciPy special.powm1用法及代码示例
- Python SciPy special.poch用法及代码示例
- Python SciPy special.pdtr用法及代码示例
- Python SciPy special.pseudo_huber用法及代码示例
- Python SciPy special.psi用法及代码示例
- Python SciPy special.perm用法及代码示例
- Python SciPy special.exp1用法及代码示例
- Python SciPy special.expn用法及代码示例
- Python SciPy special.ncfdtri用法及代码示例
- Python SciPy special.gamma用法及代码示例
- Python SciPy special.y1用法及代码示例
- Python SciPy special.y0用法及代码示例
- Python SciPy special.ellip_harm_2用法及代码示例
- Python SciPy special.i1e用法及代码示例
- Python SciPy special.smirnovi用法及代码示例
- Python SciPy special.ker用法及代码示例
- Python SciPy special.ynp_zeros用法及代码示例
- Python SciPy special.k0e用法及代码示例
- Python SciPy special.j1用法及代码示例
- Python SciPy special.logsumexp用法及代码示例
- Python SciPy special.expit用法及代码示例
- Python SciPy special.nbdtrik用法及代码示例
- Python SciPy special.nbdtrin用法及代码示例
- Python SciPy special.seterr用法及代码示例
- Python SciPy special.ncfdtr用法及代码示例
注:本文由纯净天空筛选整理自scipy.org大神的英文原创作品 scipy.special.polygamma。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。