本文簡要介紹 python 語言中 scipy.special.laguerre
的用法。
用法:
scipy.special.laguerre(n, monic=False)#
拉蓋爾多項式。
定義為解決方案
是一次多項式 。
- n: int
多項式的次數。
- monic: 布爾型,可選
如果為 True,則將前導係數縮放為 1。默認為 False。
- L: orthopoly1d
拉蓋爾多項式。
參數 ::
返回 ::
注意:
多項式 與 正交,權重函數為 。
參考:
[AS]Milton Abramowitz 和 Irene A. Stegun 合編。帶有公式、圖表和數學表格的數學函數手冊。紐約:多佛,1972 年。
例子:
拉蓋爾多項式 是廣義拉蓋爾多項式 的特例 。讓我們在間隔 上驗證它:
>>> import numpy as np >>> from scipy.special import genlaguerre >>> from scipy.special import laguerre >>> x = np.arange(-1.0, 1.0, 0.01) >>> np.allclose(genlaguerre(3, 0)(x), laguerre(3)(x)) True
多項式 也滿足遞歸關係:
這可以很容易地在 上檢查 :
>>> x = np.arange(0.0, 1.0, 0.01) >>> np.allclose(4 * laguerre(4)(x), ... (7 - x) * laguerre(3)(x) - 3 * laguerre(2)(x)) True
這是前幾個拉蓋爾多項式 的圖:
>>> import matplotlib.pyplot as plt >>> x = np.arange(-1.0, 5.0, 0.01) >>> fig, ax = plt.subplots() >>> ax.set_ylim(-5.0, 5.0) >>> ax.set_title(r'Laguerre polynomials $L_n$') >>> for n in np.arange(0, 5): ... ax.plot(x, laguerre(n)(x), label=rf'$L_{n}$') >>> plt.legend(loc='best') >>> plt.show()
相關用法
- Python SciPy special.lambertw用法及代碼示例
- Python SciPy special.logsumexp用法及代碼示例
- Python SciPy special.log1p用法及代碼示例
- Python SciPy special.legendre用法及代碼示例
- Python SciPy special.log_expit用法及代碼示例
- Python SciPy special.logit用法及代碼示例
- Python SciPy special.log_softmax用法及代碼示例
- Python SciPy special.log_ndtr用法及代碼示例
- 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.expit用法及代碼示例
- Python SciPy special.polygamma用法及代碼示例
- Python SciPy special.nbdtrik用法及代碼示例
- Python SciPy special.nbdtrin用法及代碼示例
注:本文由純淨天空篩選整理自scipy.org大神的英文原創作品 scipy.special.laguerre。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。