本文簡要介紹 python 語言中 scipy.special.legendre
的用法。
用法:
scipy.special.legendre(n, monic=False)#
勒讓德多項式。
定義為解決方案
是一次多項式 。
- n: int
多項式的次數。
- monic: 布爾型,可選
如果為 True,則將前導係數縮放為 1。默認為 False。
- P: orthopoly1d
勒讓德多項式。
參數 ::
返回 ::
注意:
多項式 與 正交,權重函數為 1。
例子:
生成 3rd-order Legendre 多項式 1/2*(5x^3 + 0x^2 - 3x + 0):
>>> from scipy.special import legendre >>> legendre(3) poly1d([ 2.5, 0. , -1.5, 0. ])
相關用法
- Python SciPy special.logsumexp用法及代碼示例
- Python SciPy special.laguerre用法及代碼示例
- Python SciPy special.log1p用法及代碼示例
- Python SciPy special.log_expit用法及代碼示例
- Python SciPy special.logit用法及代碼示例
- Python SciPy special.log_softmax用法及代碼示例
- Python SciPy special.lambertw用法及代碼示例
- 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.legendre。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。