本文简要介绍 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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。