Open In App

Python | Numpy np.hermdomain() method

Last Updated : 11 Dec, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report
With the help of np.hermdomain() method, we can get the filter having value array([-1, 1]) in hermite series by using np.hermdomain() method.
Syntax : np.hermdomain Return : Return filter of array([-1, 1])
Example #1 : In this example we can see that by using np.hermdomain() method, we are able to get the filter of an array([-1, 1]) in hermite series by using this method. Python3 1=1
# import numpy and hermdomain
import numpy as np
from numpy.polynomial.hermite import hermdomain

# using np.hermdomain() method
for i in range(5):
    gfg = hermdomain + [i, i + 1]
    print(gfg)
Output :
[-1 2] [0 3] [1 4] [2 5] [3 6]
Example #2 : Python3 1=1
# import numpy and hermdomain
import numpy as np
from numpy.polynomial.hermite import hermdomain

# using np.hermedomain() method
for i in range(5):
    gfg = hermedomain + [i-1, i + 1]
    print(gfg)
Output :
[-2 2] [-1 3] [0 4] [1 5] [2 6]

Next Article

Similar Reads