Re: [Matplotlib-users] [Gnuplot-py-users] is it possible to continue to Debug when figure is created??

2010-05-18 Thread Alan G Isaac
> http://matplotlib.sourceforge.net/faq/howto_faq.html#use-show


Here is some more detail, that I actually think
should be added to the above link.
http://stackoverflow.com/questions/458209/is-there-a-way-to-detach-matplotlib-plots-so-that-the-computation-can-continue

hth,
Alan Isaac


--

___
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users


Re: [Matplotlib-users] [Gnuplot-py-users] is it possible to continue to Debug when figure is created??

2010-05-21 Thread Sandy Ydnas

sorry 

but nothing from

http://stackoverflow.com/questions/458209/is-there-a-way-to-detach-matplotlib-plots-so-that-the-computation-can-continue

 

working on Vista for Wings IDE

do you use it for LInux?

Sandy


 
> Date: Tue, 18 May 2010 18:14:11 -0400
> From: alan.is...@gmail.com
> To: matplotlib-users@lists.sourceforge.net
> CC: c...@live.com
> Subject: Re: [Gnuplot-py-users] is it possible to continue to Debug when 
> figure is created??
> 
> > http://matplotlib.sourceforge.net/faq/howto_faq.html#use-show
> 
> 
> Here is some more detail, that I actually think
> should be added to the above link.
> http://stackoverflow.com/questions/458209/is-there-a-way-to-detach-matplotlib-plots-so-that-the-computation-can-continue
> 
> hth,
> Alan Isaac
> 
  
_
Hotmail: Powerful Free email with security by Microsoft.
https://signup.live.com/signup.aspx?id=60969--

___
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users


Re: [Matplotlib-users] [Gnuplot-py-users] is it possible to continue to Debug when figure is created??

2010-05-21 Thread Sandy Ydnas

morever

computer gets stuck for code

 

from multiprocessing import Process
from matplotlib.pyplot import plot, show

def plot_graph(*args):
for data in args:
plot(data)
show()

p = Process(target=plot_graph, args=([1, 2, 3],))
p.start()

print 'yay'
print 'computation continues...'
print 'that rocks.'

print 'Now lets wait for the graph be closed to continue...:'
p.join()

 

from

http://stackoverflow.com/questions/458209/is-there-a-way-to-detach-matplotlib-plots-so-that-the-computation-can-continue


 

 

since this code multipliers number of pyhon.exe running till memory is full in 
my case 6 GB
 

is it problem for Vista only?

Sandy

 


 
> Date: Tue, 18 May 2010 18:14:11 -0400
> From: alan.is...@gmail.com
> To: matplotlib-users@lists.sourceforge.net
> CC: c...@live.com
> Subject: Re: [Gnuplot-py-users] is it possible to continue to Debug when 
> figure is created??
> 
> > http://matplotlib.sourceforge.net/faq/howto_faq.html#use-show
> 
> 
> Here is some more detail, that I actually think
> should be added to the above link.
> http://stackoverflow.com/questions/458209/is-there-a-way-to-detach-matplotlib-plots-so-that-the-computation-can-continue
> 
> hth,
> Alan Isaac
> 
  
_
Hotmail: Trusted email with powerful SPAM protection.
https://signup.live.com/signup.aspx?id=60969--

___
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users