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 wrote:
> On Thu, Nov 11, 2010 at 9:41 PM, Martin Bures
> wrote:
> > I am having a little issue with the matplotlib.widgets RectangleSelector.
> &g
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():
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
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