本文簡要介紹 python 語言中 scipy.special.ai_zeros
的用法。
用法:
scipy.special.ai_zeros(nt)#
計算艾裏函數 Ai 及其導數的 nt 個零點和值。
計算 Airy 函數 Ai(x) 的前 nt 個零點 a;艾裏函數 Ai'(x) 的導數的第一個 nt 個零點 ap;對應的值 Ai(a');和相應的值 Ai'(a)。
- nt: int
要計算的零數
- a: ndarray
Ai(x) 的前 nt 個零點
- ap: ndarray
Ai'(x) 的前 nt 個零點
- ai: ndarray
Ai(x) 的值在 Ai'(x) 的第一個 nt 個零處評估
- aip: ndarray
Ai'(x) 的值在 Ai(x) 的第一個 nt 個零處評估
參數 ::
返回 ::
參考:
[1]張善傑和金建明。 “特殊函數的計算”,John Wiley and Sons,1996 年。https://people.sc.fsu.edu/~jburkardt/f77_src/special_functions/special_functions.html
例子:
>>> from scipy import special >>> a, ap, ai, aip = special.ai_zeros(3) >>> a array([-2.33810741, -4.08794944, -5.52055983]) >>> ap array([-1.01879297, -3.24819758, -4.82009921]) >>> ai array([ 0.53565666, -0.41901548, 0.38040647]) >>> aip array([ 0.70121082, -0.80311137, 0.86520403])
相關用法
- Python SciPy special.airy用法及代碼示例
- Python SciPy special.airye用法及代碼示例
- Python SciPy special.agm用法及代碼示例
- 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用法及代碼示例
注:本文由純淨天空篩選整理自scipy.org大神的英文原創作品 scipy.special.ai_zeros。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。