Re: [Matplotlib-users] Problem setting clim for subplots

2013-06-07 Thread Eric Firing
Julien, See https://github.com/matplotlib/matplotlib/pull/2119 for a proposed fix. Eric -- How ServiceNow helps IT people transform IT departments: 1. A cloud service to automate IT design, transition and operations 2. D

Re: [Matplotlib-users] Problem setting clim for subplots

2013-06-07 Thread Julien Cornebise
Thans a lot Eric for the fast and detailed answer! On Thu, Jun 6, 2013 at 9:24 PM, Eric Firing wrote: > On 2013/06/06 2:08 AM, Julien Cornebise wrote: > > Dear all > > > > I am puzzled: in the following code, when I call clim() *after* having > > created 3 subplots, only the last subplot takes

Re: [Matplotlib-users] Problem setting clim for subplots

2013-06-06 Thread Eric Firing
On 2013/06/06 2:08 AM, Julien Cornebise wrote: > Dear all > > I am puzzled: in the following code, when I call clim() *after* having > created 3 subplots, only the last subplot takes the new limits into > account. All other subplots ignore it. Xlim(), on the countrary, works > as intended. Everythi

Re: [Matplotlib-users] Problem setting clim for subplots

2013-06-06 Thread Eric Firing
On 2013/06/06 2:08 AM, Julien Cornebise wrote: > Dear all > > I am puzzled: in the following code, when I call clim() *after* having > created 3 subplots, only the last subplot takes the new limits into > account. All other subplots ignore it. Xlim(), on the countrary, works > as intended. Everythi

[Matplotlib-users] Problem setting clim for subplots

2013-06-06 Thread Julien Cornebise
Dear all I am puzzled: in the following code, when I call clim() *after* having created 3 subplots, only the last subplot takes the new limits into account. All other subplots ignore it. Xlim(), on the countrary, works as intended. Everything works fine when I set the clim() at creation time. Am