Python| Numpy np.chebroots() 方法
借助np.chebroots()
方法,我们可以使用np.chebroots()
方法获得切比雪夫级数的根。
Syntax : np.chebroots(array of coefficients)
Return : Return the array having roots of chebyshev series.
示例 #1:
在这个例子中我们可以看到,通过使用np.chebroots()
方法,我们可以通过使用这个方法得到切比雪夫级数的根。
# import numpy
import numpy as np
import numpy.polynomial.chebyshev as cheb
# using np.chebroots() method
gfg = cheb.chebroots((2, 4, 8, 1))
print(gfg)
输出 :
[-3.83265557 -0.71484143 0.54749701]
示例 #2:
# import numpy
import numpy as np
import numpy.polynomial.chebyshev as cheb
# using np.chebroots() method
gfg = cheb.chebroots((-3, 4, -5, 1, 10))
print(gfg)
输出 :
[-1.02213642 -0.38135467 0.40624906 0.94724203]