Python Numpy np.heavyiside()方法
在np.heavyiside()方法的帮助下,我们可以通过使用np.heavyiside()方法得到重阶函数。
语法: np.heaviside(array1, array2 or value)
回归:回归重生系列。
例子#1 :
在这个例子中,我们可以看到,通过使用np.heavyiside()方法,我们能够得到重阶函数的系列数组,通过使用这个方法。
# import numpy
import numpy as np
x = np.array([-1.5, 0.5, 0, 0.5, 1.5])
# using np.heaviside() method
gfg = np.heaviside(x, 0.5)
print(gfg)
输出 :
[0. 1. 0.5 1. 1.]
例子#2 :
# import numpy
import numpy as np
x = np.zeros(5)
y = np.array([-1.5, 0.5, 0, 0.5, -1.5])
# using np.heaviside() method
gfg = np.heaviside(x, y)
print(gfg)
输出 :
[-1.5 0.5 0. 0.5 -1.5]