python画图,画冲激函数
时间: 2023-06-30 11:19:41 浏览: 259
python画图
您可以使用Python的matplotlib库来画出冲激函数。下面是一个简单的示例代码:
```python
import numpy as np
import matplotlib.pyplot as plt
# 定义x轴范围
x = np.arange(-5, 6)
# 定义冲激函数
def impulse(x):
if x == 0:
return 1
else:
return 0
# 将冲激函数应用到x轴上的每个点
y = np.array([impulse(i) for i in x])
# 绘制图像
plt.stem(x, y)
plt.title('Impulse Function')
plt.xlabel('x')
plt.ylabel('y')
plt.show()
```
运行代码后,您应该会看到一个冲激函数的图像。注意,由于冲激函数只在x=0处有非零值,因此我们使用了matplotlib的stem函数来绘制一个垂直于x轴的线条来表示冲激函数。
阅读全文