Re: [Matplotlib-users] RectangleSelector Issue

2010-11-12 Thread Martin Bures
I noticed that in another post and did try that but the behavior was the same. martin. On Fri, Nov 12, 2010 at 9:14 AM, Ryan May rma...@gmail.com wrote: On Thu, Nov 11, 2010 at 9:41 PM, Martin Bures needemesle...@gmail.com wrote: I am having a little issue with the matplotlib.widgets

[Matplotlib-users] RectangleSelector Issue

2010-11-11 Thread Martin Bures
I am having a little issue with the matplotlib.widgets RectangleSelector. The behavior is that the first time I try to select a region, no rectangle draws. All subsequent uses work correctly. Here is how I am calling: if self.zoomMode: if self.canvas.widgetlock.locked():

Re: [Matplotlib-users] combine eps files into a ps file ?

2007-09-12 Thread Martin Bures
I recently asked a question along the same lines... MATLAB has a command, print, and it allows you to output a figure to a file, such as a .ps file and it has a switch '-append' so that you can append multiple plots to the same file. Is there a switch for the pylab command, 'savefig' to do the

[Matplotlib-users] savefig

2007-08-30 Thread Martin Bures
Hi - I am writing a script that will generate many figures. Currently this script lives in matlab and outputs these figures to a single .ps file: if( first ) print( nfig, '-dpsc2', '-r300', '-loose', filename ); else print( nfig, '-dpsc2', '-r300', '-loose', '-append', filename ); end