Re: [Matplotlib-users] matplotlib multiple windows comparison

2013-03-12 Thread Phil Elson
Hi Sudheer, Try the interactive mode ( http://matplotlib.org/api/pyplot_api.html#matplotlib.pyplot.ion): import matplotlib.pyplot as plt plt.ion() plt.plot(range(10)) [matplotlib.lines.Line2D object at 0x1c565d0] **a figure pops up here and hands you back the python command line**

Re: [Matplotlib-users] matplotlib multiple windows comparison

2013-03-12 Thread Sudheer Joseph
*** From: Phil Elson pelson@gmail.com To: Sudheer Joseph sudheer.jos...@yahoo.com Cc: matplotlib-users@lists.sourceforge.net matplotlib-users@lists.sourceforge.net Sent: Tuesday, 12 March 2013 3:08 PM Subject: Re: [Matplotlib-users] matplotlib multiple windows comparison Hi Sudheer, Try

Re: [Matplotlib-users] matplotlib multiple windows comparison

2013-03-12 Thread Phil Elson
*Sent:* Tuesday, 12 March 2013 3:08 PM *Subject:* Re: [Matplotlib-users] matplotlib multiple windows comparison Hi Sudheer, Try the interactive mode ( http://matplotlib.org/api/pyplot_api.html#matplotlib.pyplot.ion): import matplotlib.pyplot as plt plt.ion() plt.plot(range(10

Re: [Matplotlib-users] matplotlib multiple windows comparison

2013-03-12 Thread Sudheer Joseph
@lists.sourceforge.net Sent: Tuesday, 12 March 2013 7:53 PM Subject: Re: [Matplotlib-users] matplotlib multiple windows comparison I hadn't spotted you were using the WxAgg backend too - this looks like the same bug that Brendan reported yesterday. The easiest solution would be to use another back-end until

[Matplotlib-users] matplotlib multiple windows comparison

2013-03-11 Thread Sudheer Joseph
Dear experts, Is there a way to get back to the prompt after a plot is made and displayed with out closing the plot? The objective is to compare to plots or check some aspect about the plot made from the loaded variables. This is the standardĀ behaviorĀ of matlab after plotting we get the prompt