Re: [Matplotlib-users] Defining coordinates for contour plot

2011-08-20 Thread Eric Firing
On 08/20/2011 02:03 AM, Alexa Villaume wrote: > Hello, > > I'm trying to make a contour plot and I'm running into problems when > specifying the coordinates for the plot. I do, > > #Specify coordinates of the surface > delta0=1.0 > delta1=0.1 > x=np.arange(0.0, 6.0, delta0) > y=np.arange(-1.0,3.0,

[Matplotlib-users] Defining coordinates for contour plot

2011-08-20 Thread Alexa Villaume
Hello, I'm trying to make a contour plot and I'm running into problems when specifying the coordinates for the plot. I do, #Specify coordinates of the surface delta0=1.0 delta1=0.1 x=np.arange(0.0, 6.0, delta0) y=np.arange(-1.0,3.0, delta1) #Contour the arrays. plt.contour(x, y, O3, O3Level) An