[Matplotlib-users] newbie: easy question (I hope)

2007-02-16 Thread Chiara Caronna
Hello, I would like to plot some data while the interpreter continues calculating... if I just write plot(x,y) show() Then the code stops until I close the window... how should I do? Thanks in advance Chiara _ Don't just search.

Re: [Matplotlib-users] newbie: easy question (I hope)

2007-02-16 Thread Benoit Donnet
Hi, Then the code stops until I close the window... how should I do? This is normal behavior as, I guess, your program is single-threaded. What you want is some concurrency during the execution (computing and plotting). You should look at multi-threading programming in Python. You could

Re: [Matplotlib-users] newbie: easy question (I hope)

2007-02-16 Thread Edin Salkovic
On 2/16/07, Chiara Caronna [EMAIL PROTECTED] wrote: Hello, I would like to plot some data while the interpreter continues calculating... if I just write plot(x,y) show() Then the code stops until I close the window... how should I do? Thanks in advance Chiara Hi Chiara, Try setting