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


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


借助np.chebfromroots()方法,我们可以获得以根作为参数传递的chebyshev系列np.chebfromroots()方法。

用法: np.chebfromroots(roots)
返回:Return the chebyshev series.

范例1:
在这个例子中,我们可以通过使用np.chebfromroots()方法,我们可以获得由参数传递的根生成的chebyshev系列。


# import numpy 
import numpy as np 
import numpy.polynomial.chebyshev as cheb 
  
# using np.chebfromroots() method 
gfg = cheb.chebfromroots((2, 4, 8, 1)) 
  
print(gfg)

输出:

[9.9375e+01 -1.3125e+02 3.5500e+01 -3.7500e+00 1.2500e-01]

范例2:

# import numpy 
import numpy as np 
import numpy.polynomial.chebyshev as cheb 
  
# using np.chebfromroots() method 
gfg = cheb.chebfromroots((-3, 4, -5, 1, 10)) 
  
print(gfg)

输出:

[-5.19125e+02 4.52375e+02 8.00000e+01 -1.24375e+01 -8.75000e-01 6.25000e-02]



相关用法


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