scipy.special.

legendre#

scipy.special.legendre(n, monic=False)[source]#

勒让德多项式。

定义为以下微分方程的解:

\[\frac{d}{dx}\left[(1 - x^2)\frac{d}{dx}P_n(x)\right] + n(n + 1)P_n(x) = 0;\]

\(P_n(x)\) 是一个n次多项式。

参数::
nint

多项式的次数。

monicbool, 可选

如果为True,则将最高次项系数缩放为1。默认值为False

返回值::
Porthopoly1d

勒让德多项式。

备注

多项式\(P_n\)\([-1, 1]\) 上正交,权重函数为 1。

示例

生成 3 阶勒让德多项式 1/2*(5x^3 + 0x^2 - 3x + 0)

>>> from scipy.special import legendre
>>> legendre(3)
poly1d([ 2.5,  0. , -1.5,  0. ])