Thursday, September 4, 2025
HomeLanguagesPython | Numpy np.hermegrid2d() method

Python | Numpy np.hermegrid2d() method

With the help of np.hermegrid2d() method, we can evaluate a 2-D hermite series on cartesian product of (x, y), where (x, y) is defined in the np.hermegrid2d() method.

Syntax : np.hermegrid2d(x, y, series)
Return : Return the evaluated 2-D hermite series.

Example #1 :
In this example we can see that by using np.hermegrid2d() method, we are able to evaluate the 2-D hermite series on cartesian product of x and y by using this method.




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


Output :

1912.0

Example #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)


Output :

[[2689. 4650.]
[3772. 6520.]]

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32261 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6626 POSTS0 COMMENTS
Nicole Veronica
11795 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11855 POSTS0 COMMENTS
Shaida Kate Naidoo
6747 POSTS0 COMMENTS
Ted Musemwa
7023 POSTS0 COMMENTS
Thapelo Manthata
6695 POSTS0 COMMENTS
Umr Jansen
6714 POSTS0 COMMENTS