numpy.polynomial.legendre.leg2poly¶
-
numpy.polynomial.legendre.
leg2poly
(c)[source]¶ 将Legendre系列转换为多项式。
将代表Legendre系列的系数的数组(从最低程度到最高程度)转换为从最低到最高程度排序的等效多项式的系数(相对于“标准”基础)的数组。
参数: c:array_like
1-D数组,包含Legendre系数系数,从最低阶项到最高阶。
返回: pol:ndarray
1-D数组,其包含从最低次项到最高次序排序的等效多项式的系数(相对于“标准”基础)。
也可以看看
笔记
在多项式基组之间进行转换的简单方法是使用类实例的convert方法。
例子
>>> c = P.Legendre(range(4)) >>> c Legendre([ 0., 1., 2., 3.], [-1., 1.]) >>> p = c.convert(kind=P.Polynomial) >>> p Polynomial([-1. , -3.5, 3. , 7.5], [-1., 1.]) >>> P.leg2poly(range(4)) array([-1. , -3.5, 3. , 7.5])