Re: [Matplotlib-users] Ordering contourf within a range

2011-08-12 Thread Eric Firing
On 08/12/2011 08:07 AM, Benjamin Root wrote: > > > On Fri, Aug 12, 2011 at 12:47 PM, Yoshi Rokuko > wrote: > > you mean something like that? > > m.contourf(x, y, var, np.linspace(-100,100,33)) > > best regards > > > In addition to that (which would provide cont

Re: [Matplotlib-users] Ordering contourf within a range

2011-08-12 Thread Bruce Ford
That's exactly it! Thanks guys! Bruce --- Bruce W. Ford Clear Science, Inc. br...@clearscienceinc.com http://www.ClearScienceInc.com http://www.facebook.com/clearscience http://www.twitter.com/ROVs_rule Phone: (904) 796-8101 Fax: (904) 379-9704 8241 Parkridge

Re: [Matplotlib-users] Ordering contourf within a range

2011-08-12 Thread Benjamin Root
On Fri, Aug 12, 2011 at 12:47 PM, Yoshi Rokuko wrote: > you mean something like that? > > m.contourf(x, y, var, np.linspace(-100,100,33)) > > best regards > > In addition to that (which would provide control over the contouring), one can create a Normalization object, and supply that to the conto

Re: [Matplotlib-users] Ordering contourf within a range

2011-08-12 Thread Yoshi Rokuko
you mean something like that? m.contourf(x, y, var, np.linspace(-100,100,33)) best regards -- FREE DOWNLOAD - uberSVN with Social Coding for Subversion. Subversion made easy with a complete admin console. Easy to use, e

[Matplotlib-users] Ordering contourf within a range

2011-08-12 Thread Bruce Ford
In plotting the figure in the below code, I need to set the colorbar and contourf scale to a specific value range (e.g., -100 to 100). When plotting similar items, I need to ensure the scale is the same across multiple images for comparison and overide the autoscaling. Any ideas? Seems like it s