Python | Numpy np.hermeone() method

Last Updated : 11 Dec, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report
With the help of np.hermeone() method, we can use hermeone instead of np.ones() by using np.hermeone() method.
Syntax : np.hermeone Return : Return the array of ones.
Example #1 : In this example we can see that by using np.hermeone() method, we are able to get the functionality of np.ones as same as this method. Python3 1=1
# import numpy and hermeone
import numpy as np
from numpy.polynomial.hermite_e import hermeone
 
# using np.hermeone() method
gfg = hermeone + [1, 2, 3, 4, 5]
 
print(gfg)
Output :
[2 3 4 5 6]
Example #2 : Python3 1=1
# import numpy and hermeone
import numpy as np
from numpy.polynomial.hermite_e import hermeone
 
# using np.hermeone() method
gfg = hermeone + [[2, 4, 6], [3, 6, 9]]
 
print(gfg)
Output :
[[3 5 7] [4 7 10]]

Next Article

Similar Reads