📜  Python| Numpy np.chebvander() 方法

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

Python| Numpy np.chebvander() 方法

np.chebvander()方法的帮助下,我们可以从给定的数组中获取 Pseudo-Vandermonde 矩阵,该矩阵具有通过使用np.chebvander()方法作为参数传递的度数。

示例 #1:
在这个例子中,我们可以看到通过使用np.chebvander()方法,我们可以使用这种方法得到伪范德蒙矩阵。

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

输出 :

示例 #2:

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

输出 :