Python Numpy np.cheb2poly()方法
在np.cheb2poly()方法的帮助下,我们可以通过使用np.cheb2poly()方法从chebyshev数列中得到多项式。
语法: np.cheb2poly(array)
返回:返回具有多项式系数的数组。
例子#1 :
在这个例子中我们可以看到,通过使用np.cheb2poly()方法,我们能够从切比雪夫级数中得到多项式。
# import numpy
import numpy as np
from numpy import polynomial as P
x = np.array([2, 5, 7])
# using np.cheb2poly() method
gfg = P.Chebyshev(x)
gfg = gfg.convert(kind = P.Polynomial)
gfg = P.chebyshev.cheb2poly(gfg)
print(gfg)
[Polynomial([-5., 5., 14.], domain=[-1., 1.], window=[-1., 1.])]
例子#2 :
# import numpy
import numpy as np
from numpy import polynomial as P
x = np.array([2, 3, 5, 7, 11])
# using np.cheb2poly() method
gfg = P.Chebyshev(x)
gfg = gfg.convert(kind = P.Polynomial)
gfg = P.chebyshev.cheb2poly(gfg)
print(gfg)
[Polynomial([8., -18., -78., 28., 88.], domain=[-1., 1.], window=[-1., 1.])]