Re: [Matplotlib-users] figure dpi output problem

2007-05-29 Thread Antonino Ingargiola
Hi, 2007/5/26, Steve Schmerler [EMAIL PROTECTED]: Jeff Whitaker wrote: [EMAIL PROTECTED] wrote: [cut] I get a 600x300 png with that script, using the latest SVN. -Jeff Me too, on Linux, mpl 0.90dev3131. Me too with MPL 0.87.7 on Debian Etch. ~ Antonio

[Matplotlib-users] updating an existing plot

2007-05-29 Thread Trevis Crane
Hi, I'm making contour plots of a field distribution, and overlaid on that is a grid that I create using hlines() and vlines(). I want to change the contour plot many times, but keep the grid the same. Right now, I have clear the axes with cla() then plot the new contour and replot the grid.

Re: [Matplotlib-users] Basemap - coastlines overlay question

2007-05-29 Thread Jeff Whitaker
James Boyle wrote: Thanks Jeff, it works. where is the reference to explain exactly what 'zorder' does and its proper use? --Jim Jim: See zorder_demo.py in the examples - the comments explain it pretty well. I've cut and pasted below: The default drawing order for axes is patches,

[Matplotlib-users] can plot only one time in windows

2007-05-29 Thread Emmanuel Favre-Nicolin
Hi, I can plot only one time in windows. The second time, the window appears without the tools and when I click on the windows it become white and freezes. Here is a code : from pylab import * x=arange(5) y=x*x plot(x,y) show() plot(x,y) show()