Python| Numpy np.chebfromroots() 方法
在np.chebfromroots()
方法的帮助下,我们可以得到在np.chebfromroots()
方法中作为参数传递的根的切比雪夫级数。
Syntax : np.chebfromroots(roots)
Return : Return the chebyshev series.
示例 #1:
在这个例子中,我们可以看到通过使用np.chebfromroots()
方法,我们能够得到由参数传递的根生成的切比雪夫级数。
# 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]