当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python SciPy special.laguerre用法及代码示例


本文简要介绍 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()
scipy-special-laguerre-1.png

相关用法


注:本文由纯净天空筛选整理自scipy.org大神的英文原创作品 scipy.special.laguerre。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。