本文簡要介紹 python 語言中 scipy.special.wright_bessel
的用法。
用法:
scipy.special.wright_bessel(a, b, x, out=None) = <ufunc 'wright_bessel'>#
Wright 的廣義 Bessel 函數。
Wright 的廣義 Bessel 函數是一個整函數,定義為
另請參見[1]。
- a: 類似浮點數的數組
a >= 0
- b: 類似浮點數的數組
b >= 0
- x: 類似浮點數的數組
x >= 0
- out: ndarray,可選
函數結果的可選輸出數組
- 標量或 ndarray
Wright 的廣義 Bessel 函數的值
參數 ::
返回 ::
注意:
由於具有三個參數的函數的複雜性,隻實現了非負參數。
參考:
[1]數學函數數字 Library ,10.46。 https://dlmf.nist.gov/10.46.E1
例子:
>>> from scipy.special import wright_bessel >>> a, b, x = 1.5, 1.1, 2.5 >>> wright_bessel(a, b-1, x) 4.5314465939443025
現在,讓我們驗證關係
>>> a * x * wright_bessel(a, b+a, x) + (b-1) * wright_bessel(a, b, x) 4.5314465939443025
相關用法
- Python SciPy special.wrightomega用法及代碼示例
- Python SciPy special.wofz用法及代碼示例
- 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.polygamma用法及代碼示例
- Python SciPy special.nbdtrik用法及代碼示例
- Python SciPy special.nbdtrin用法及代碼示例
- Python SciPy special.seterr用法及代碼示例
- Python SciPy special.ncfdtr用法及代碼示例
- Python SciPy special.pdtr用法及代碼示例
- Python SciPy special.expm1用法及代碼示例
- Python SciPy special.shichi用法及代碼示例
注:本文由純淨天空篩選整理自scipy.org大神的英文原創作品 scipy.special.wright_bessel。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。