Open In App

Python | Numpy np.hermadd() method

Last Updated : 02 Dec, 2019
Comments
Improve
Suggest changes
Like Article
Like
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.]

Next Article
Practice Tags :

Similar Reads