Python| Numpy np.hermone() 方法
在np.hermone()
方法的帮助下,我们可以使用hermzero代替np.ones通过使用np.hermone()
方法。
Syntax : np.hermone()
Return : Return array([1])
示例 #1:
在这个例子中,我们可以看到通过使用np.hermone()
方法,我们可以得到与这个方法相同的 np.ones 的功能。
# import numpy and hermone
import numpy as np
from numpy.polynomial.hermite import hermone
# using np.hermone() method
gfg = hermone + [1, 2, 3, 4, 5]
print(gfg)
输出 :
[2 3 4 5 6]
示例 #2:
# import numpy and hermone
import numpy as np
from numpy.polynomial.hermite import hermone
# using np.hermone() method
gfg = hermone + [[2, 4, 6], [3, 6, 9]]
print(gfg)
输出 :
[[ 3 5 7]
[ 4 7 10]]