Python | Numpy np.hermeone() method (original) (raw)

Last Updated : 11 Dec, 2019

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.

import numpy as np

from numpy.polynomial.hermite_e import hermeone

gfg = hermeone + [ 1 , 2 , 3 , 4 , 5 ]

print (gfg)

Output :

[2 3 4 5 6]

Example #2 :

import numpy as np

from numpy.polynomial.hermite_e import hermeone

gfg = hermeone + [[ 2 , 4 , 6 ], [ 3 , 6 , 9 ]]

print (gfg)

Output :

[[3 5 7]
[4 7 10]]

Similar Reads