📜  Python| Numpy np.chebfromroots() 方法

📅  最后修改于: 2022-05-13 01:54:59.027000             🧑  作者: Mango

Python| Numpy np.chebfromroots() 方法

np.chebfromroots()方法的帮助下,我们可以得到在np.chebfromroots()方法中作为参数传递的根的切比雪夫级数。

示例 #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)

输出 :

示例 #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)

输出 :