当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python Numpy np.cheb2poly()用法及代码示例


借助np.cheb2poly()方法,我们可以通过使用chebyshev级数获得多项式np.cheb2poly()方法。

用法: np.cheb2poly(array)
返回:Return array having coefficients of polynomial.

范例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.])]



相关用法


注:本文由纯净天空筛选整理自Jitender_1998大神的英文原创作品 Python | Numpy np.cheb2poly() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。