📜  Python| Numpy np.chebvander2d() 方法

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

Python| Numpy np.chebvander2d() 方法

np.chebvander2d()方法的帮助下,我们可以从给定的具有度数的数组中获取伪范德蒙二维矩阵,该矩阵通过使用np.chebvander2d()方法作为参数传递。

示例 #1:
在这个例子中,我们可以看到通过使用np.chebvander2d()方法,我们能够使用这种方法获得伪 vandermonde 2D 矩阵。

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

输出 :

示例 #2:

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

输出 :