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