[Matplotlib-users] setting x/yrange on a pcolor plot

2010-12-15 Thread Ben Elliston
I am trying to plot an 840 x 680 element matrix using pcolor. matplotlib has decided that the xrange should be 900 and the yrange 700. Is there a way to tell matplotlib to always use x/yranges that always match the dimensions of the matrix? Thanks, Ben

Re: [Matplotlib-users] setting x/yrange on a pcolor plot

2010-12-15 Thread Benjamin Root
On Wed, Dec 15, 2010 at 4:08 PM, Ben Elliston b...@air.net.au wrote: I am trying to plot an 840 x 680 element matrix using pcolor. matplotlib has decided that the xrange should be 900 and the yrange 700. Is there a way to tell matplotlib to always use x/yranges that always match the

Re: [Matplotlib-users] setting x/yrange on a pcolor plot

2010-12-15 Thread Ben Elliston
On Wed, Dec 15, 2010 at 08:02:42PM -0600, Benjamin Root wrote: Assuming you are doing a pcolor on some 2-D numpy array called 'z': ax.set_xlim(xmax=z.shape[1]) ax.set_ylim(ymax=z.shape[0]) Thanks. I also found (after a bit of digging) that I could just use: axis ('off') Cheers, Ben