Re: [Matplotlib-users] continuous plotting..

2007-12-02 Thread brett . mcsweeney
always look the same. Best regards, Brett McSweeney ray sa <[EMAIL PROTECTED]> Sent by: [EMAIL PROTECTED] 03/12/2007 09:50 AM To matplotlib-users@lists.sourceforge.net cc Subject [Matplotlib-users] continuous plotting.. Hello I am trying to use this application to plot a diagram

Re: [Matplotlib-users] continuous plotting..

2007-12-02 Thread Eric Firing
Ray, The first problem is that you are calling show() repeatedly, but show() should only be called once per script; it is used in non-interactive plotting. Now I see that you are trying to prevent that, but the code as it came out in your email does not do so--val never gets set to zero. Note

[Matplotlib-users] continuous plotting..

2007-12-02 Thread ray sa
Hello I am trying to use this application to plot a diagram from a log file that is always active and storing data. I have written the following and I have issues once I touch the figure window it freezes... from pylab import * import time val = 1 while True: inData = load('c:\\data.txt')