本文簡要介紹 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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。