Re: [Matplotlib-users] python question from matlab user

2012-09-09 Thread Eric Firing
On 2012/09/08 5:34 PM, Jody Klymak wrote: > >> >> This is one of the big differences between python and matlab: in >> matlab, if an m-file has changed within a session, the change is >> immediately effective. The python "import" statement is very >> different. > > Gotchya, thanks. > > So, while I'm

Re: [Matplotlib-users] Saving figure instance for reuse

2012-09-09 Thread Benjamin Root
On Wed, Aug 15, 2012 at 5:40 AM, Jesper Larsen wrote: > Hi Matplotlib users > > I have an application where performance is critical and matplotlib is > the performance bottleneck. I am making a lot of figures using the > same basic setup of the figure. And from my profiling I can see that > this b

Re: [Matplotlib-users] Saving figure instance for reuse

2012-09-09 Thread Eric Firing
On 2012/09/09 8:50 AM, Benjamin Root wrote: > > > On Wed, Aug 15, 2012 at 5:40 AM, Jesper Larsen > wrote: > > Hi Matplotlib users > > I have an application where performance is critical and matplotlib is > the performance bottleneck. I am making a lot o

Re: [Matplotlib-users] plt.close() not releasing memory? Or memory leak elsewhere?

2012-09-09 Thread Benjamin Root
On Tue, May 22, 2012 at 9:18 AM, Stevenson, Samuel < samuel.steven...@coherent.com> wrote: > Hi Ben > > ** ** > > I am using 1.0.0. My colleague has 1.1.0 installed on his machine and is > able to reproduce the same problem. > > ** ** > > Thanks > > > Sam > Going through my old unreso

Re: [Matplotlib-users] numpoints in legend() function for scatter plot is not working in matplotlib 1.1.0?

2012-09-09 Thread Benjamin Root
On Tue, Apr 10, 2012 at 12:43 PM, wiswit wrote: > > Dear all, > > I found that the numpoints in legend function for scatter plot is not > working? > > import matplotlib as mat > import matplotlib.pyplot as plt > In [59]: mat.__version__ > Out[59]: '1.1.0' > > #ordinary plot working > fig=plt.figu

Re: [Matplotlib-users] markeredgecolor (mec) in the plot function not working?

2012-09-09 Thread Benjamin Root
On Tue, Apr 10, 2012 at 12:22 PM, wiswit wrote: > Dear all, I use matplotlib 1.1.0. import matplotlib.pyplot as plt > plt.plot(np.arange(10),'ro',mec='none') when I use plt.show(), there is > only blank frame with axis not no points. but plt.plot(np.arange(10),'ro') > will give good plot with rea

[Matplotlib-users] ANN: mplstereonet v0.2 - Stereonets for matplotlib

2012-09-09 Thread Joe Kington
Announcement - mplstereonet v0.2 = mplstereonet provides lower-hemisphere equal-area and equal-angle stereonets for matplotlib. Download -- Available for download at: http://pypi.python.org/pypi/mplstereonet/0.2 See the github page for more information and de

Re: [Matplotlib-users] numpoints in legend() function for scatter plot is not working in matplotlib 1.1.0?

2012-09-09 Thread Chao YUE
Hi Ben, I tried the "numpoints" in legend function for scatter plot, in dev version and GTKAgg backend it works. In [3]: mat.__version__ Out[3]: '1.2.x' In [4]: mat.get_backend() Out[4]: 'GTKAgg' Chao On Sun, Sep 9, 2012 at 9:28 PM, Benjamin Root wrote: > > > On Tue, Apr 10, 2012 at 12:43 P

Re: [Matplotlib-users] markeredgecolor (mec) in the plot function not working?

2012-09-09 Thread Chao YUE
Dear Ben, I tried again with dev version and GTKAgg backend it works. In [3]: mat.__version__ Out[3]: '1.2.x' In [4]: mat.get_backend() Out[4]: 'GTKAgg' Chao On Sun, Sep 9, 2012 at 9:32 PM, Benjamin Root wrote: > > > On Tue, Apr 10, 2012 at 12:22 PM, wiswit wrote: > >> Dear all, I use matp