scipy.special.
legendre#
- scipy.special.legendre(n, monic=False)[源代码]#
勒让得多项式。
定义为以下方程的解:
\[\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. ])