當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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