Python Numpy np.heavyiside()方法

Python Numpy np.heavyiside()方法

在np.heavyiside()方法的帮助下,我们可以通过使用np.heavyiside()方法得到重阶函数。
Python Numpy 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]

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程

Numpy教程