Open In App

Python | Numpy np.hermadd() method

Last Updated : 02 Dec, 2019
Improve
Improve
Like Article
Like
Save
Share
Report

With the help of np.hermadd() method, we can add the one hermite series to another by using np.hermadd() method.

Syntax : np.hermadd(series1, series2)
Return : Return the coefficients after addition of series.

Example #1 :
In this example we can see that by using np.hermadd() method, we are able to get the addition of two hermite series by using this method.




# import numpy and hermadd
import numpy as np
from numpy.polynomial.hermite import hermadd
  
series1 = np.array([1, 2, 3, 4, 5])
series2 = np.array([6, 7, 8, 9, 10])
  
# using np.hermadd() method
gfg = hermadd(series1, series2)
  
print(gfg)


Output :

[7. 9. 11. 13. 15.]

Example #2 :




# import numpy and hermadd
import numpy as np
from numpy.polynomial.hermite import hermadd
  
series1 = np.array([1, 0, 3, 0, 5])
series2 = np.array([0, 7, 0, 9, 0])
  
# using np.hermadd() method
gfg = hermadd(series1, series2)
  
print(gfg)


Output :

[1. 7. 3. 9. 5.]


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads