gpt4 book ai didi

python - 如何平息我的阴谋

转载 作者:行者123 更新时间:2023-11-28 20:02:01 25 4
gpt4 key购买 nike

我正在尝试用 Python 绘制值列表图:

import matplotlib.pyplot as plt
import control
import numpy

array = [0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1]

plt.plot(array)

plt.xlabel('Time')
plt.ylabel('ALE')

plt.show()

目前,我得到这个情节: enter image description here

如何使转换为方波边缘(即垂直线)而不是倾斜线?

最佳答案

您可以使用步进绘图样式,例如

plt.plot(array, drawstyle="steps-mid")

enter image description here

根据此处定义时间步长的方式,您还可以使用"steps-pre""steps-post" 如果您的时间步长不等距,您仍然需要为绘图提供一些 x 值。

关于python - 如何平息我的阴谋,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48531535/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com