Re: [Matplotlib-users] Being able to move figure around during time.sleep()

2009-04-07 Thread VGC123
Thanks a lot, Jae. Your suggestion was very helpful. Jae-Joon Lee wrote: > > I guess you're using ipython in pylab mode, correct? > If you want to make a standalone application, I recommend you not to > use ipython pylab mode. > Instead, use your own gui toolkit. Take a look at following ex

Re: [Matplotlib-users] Being able to move figure around during time.sleep()

2009-04-02 Thread Jae-Joon Lee
I guess you're using ipython in pylab mode, correct? If you want to make a standalone application, I recommend you not to use ipython pylab mode. Instead, use your own gui toolkit. Take a look at following examples. http://matplotlib.sourceforge.net/examples/user_interfaces/index.html However, a

Re: [Matplotlib-users] Being able to move figure around during time.sleep()

2009-04-02 Thread Christopher Barker
VGC123 wrote: > I am using MPL on windows with the 'Qt4Agg' backed, and running this code > from ipython (on the command line). I don't quite understand the threading > model of the GUI kit, vs. the main thread, so could someone enlighten me how > it works roughly, and what I need to do in a multi

[Matplotlib-users] Being able to move figure around during time.sleep()

2009-04-02 Thread VGC123
Hi all, I am experiencing the following difficulty: My program basically loops and wants to redraw a plot (using imshow() ) every 5 seconds or so. So it looks something like: ion() while 1: do redraw business.. time.sleep(5) The redrawing shows up fine, the only problem is that durin

[Matplotlib-users] Being able to move figure around during time.sleep()

2009-04-01 Thread VC
Hi all, I am experiencing the following difficulty: My program basically loops and wants to redraw a plot (using imshow() ) every 5 seconds or so. So it looks something like: ion() while 1: do redraw business.. time.sleep(5) The redrawing shows up fine, the only problem is that during