📜  Python| Numpy np.hermegrid2d() 方法

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

Python| Numpy np.hermegrid2d() 方法

np.hermegrid2d()方法的帮助下,我们可以评估 (x, y) 的笛卡尔积上的二维 Hermite 级数,其中 (x, y) 在np.hermegrid2d()方法中定义。

示例 #1:
在这个例子中,我们可以看到通过使用np.hermegrid2d()方法,我们能够使用这种方法评估 x 和 y 的笛卡尔积上的二维 Hermite 级数。

# import numpy and hermegrid2d
import numpy as np
from numpy.polynomial.hermite_e import hermegrid2d
  
series = np.array([[1, 2, 3, 4], [5, 6, 7, 8]])
# using np.hermegrid2d() method
gfg = hermegrid2d(3, 4, series)
  
print(gfg)

输出 :

示例 #2:

# import numpy and hermegrid2d
import numpy as np
from numpy.polynomial.hermite_e import hermegrid2d
  
series = np.array([[1, 2, 3, 4], [5, 6, 7, 8]])
# using np.hermegrid2d() method
gfg = hermegrid2d([2, 3], [5, 6], series)
  
print(gfg)

输出 :