Python Numpy np.hermone()方法

Python Numpy np.hermone()方法

在np.hermone()方法的帮助下,我们可以通过使用np.hermone()方法用hermzero代替np. ones。

语法: np.hermone()
返回:返回数组([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]]

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程