Re: pylab: plot update

2005-05-11 Thread Skip Montanaro
Jan> After that i call sleep(5) until I can acuire the next tuple. Jan> But during that I can't use the zoom/pan, save etc in the window. ... Jan> Is there any better way to do this easily? Set a timeout. How to do that depends on what gui tools you are using. I've never used p

pylab: plot update

2005-05-11 Thread Jan Wienhausen
Hi, I need to do a plot of data that is beeing acuired. For that the plot needs to be updated after aquiering a new tuple. At the moment I allways do this after a new tuple is aqcuired: plot(ar[0,i-1:i],br[1,i-1:i],'ro') show() #ar is arrays were the new tuple is put in po