Friday, January 30, 2026
HomeLanguagesPython | Numpy np.hermweight() method

Python | Numpy np.hermweight() method

With the help of np.hermweight() method, we can get the hermite polynomial by applying weight function in hermite series by using np.hermweight() method.

Syntax : np.hermweight(series)
Return : Return the coefficient of hermite polynomial.

Example #1 :
In this example we can see that by using np.hermweight() method, we are able to get the hermite polynomial by applying weight function in hermite series by using this method.




# import numpy and hermweight
import numpy as np
from numpy.polynomial.hermite import hermweight
  
series = np.array([6, 7, 8, 9, 10])
# using np.hermweight() method
gfg = hermweight(series)
  
print(gfg)


Output :

[2.31952283e-16 5.24288566e-22 1.60381089e-28 6.63967720e-36
3.72007598e-44]

Example #2 :




# import numpy and hermweight
import numpy as np
from numpy.polynomial.hermite import hermweight
  
series = np.array([0, -7, 8, -9, 1])
# using np.hermweight() method
gfg = hermweight(series)
  
print(gfg)


Output :

[1.00000000e+00 5.24288566e-22 1.60381089e-28 6.63967720e-36
3.67879441e-01]

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

Most Popular

Dominic
32478 POSTS0 COMMENTS
Milvus
122 POSTS0 COMMENTS
Nango Kala
6849 POSTS0 COMMENTS
Nicole Veronica
11978 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12065 POSTS0 COMMENTS
Shaida Kate Naidoo
6986 POSTS0 COMMENTS
Ted Musemwa
7222 POSTS0 COMMENTS
Thapelo Manthata
6934 POSTS0 COMMENTS
Umr Jansen
6917 POSTS0 COMMENTS