gpt4 book ai didi

python - 图GUI卡住

转载 作者:太空宇宙 更新时间:2023-11-04 10:49:50 30 4
gpt4 key购买 nike

我是 python 的新手,我正在尝试根据存储在文件中的数据绘制图表。这个文件可能随时更新,所以我试图让绘图每 3 秒更新一次(所以我不会使用所有的 CPU)。我的问题是 GUI 在午餐后卡住。

#!/usr/bin/python
# _*_ coding: utf8 _*_

import matplotlib.pyplot as plt
import numpy as np
import time

plt.ion()
plt.figure()
i=0
while 1:
taille=0
fichier=np.loadtxt('data/US.SAVE')
fichier1=np.loadtxt('data/cond.SAVE')
taille1=np.size(fichier1[:,1])
taille=np.size(fichier[:,1])

min=min(fichier[0,0],fichier1[0,0]);

fichier[:,0]=fichier[:,0]-min
fichier1[:,0]=fichier1[:,0]-min


if (taille != taille1) :
printErrors("TAILLE DE FICHIERS DIFFERENTES")


nb_chunks=np.size(fichier1[1,:])
nb_inputs=np.size(fichier[1,:])


plt.subplot(3,1,1)

plt.bar(fichier[:,0],fichier[:,1],align='center',width=0.0001, facecolor='b', label="US")
x1,x2,y1,y2 = plt.axis()
x1=x1-0.0001
plt.axis([x1, x2, y1, 1.2])
plt.legend(ncol=3,prop={'size':9})
plt.title("US ")
plt.ylabel('Activation')
plt.xlabel('Time')

plt.subplot(3,1,2)

plt.bar(fichier1[:,0],fichier1[:,1],align='center',width=0.0001, facecolor='b', label="response")



plt.axis([x1, x2, y1, 1.2])
plt.legend(ncol=3,prop={'size':9})
plt.title("Response ")
plt.ylabel('Activation')
plt.xlabel('Time')


plt.subplot(3,1,3)

plt.bar(fichier[:,0]-fichier1[:,0],fichier1[:,1],align='center',width=0.0001, facecolor='b', label="Error")
plt.axis([x1, x2, y1, 1.2])
plt.legend(ncol=3,prop={'size':9})
plt.title("Error")
plt.ylabel('Activation')
plt.xlabel('Time')
plt.draw()
name1='data/Conditionnement.eps'
plt.savefig(name1,dpi=256)
plt.draw()
del fichier,fichier1,min
i=i+1

time.sleep(3)

plt.show()

我没有在基于文件的绘图上找到任何其他主题。

最佳答案

您想使用 plt.pause(3) 函数而不是 time.sleep()pause 包括对 gui 主循环的必要调用,以使图形重新绘制。

另见:Python- 1 second plots continous presentation , matplotlib real-time linear line , pylab.ion() in python 2, matplotlib 1.1.1 and updating of the plot while the program runs ,

关于python - 图GUI卡住,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14647491/

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