Re: [Matplotlib-users] Updating/drawing all axes.

2011-11-13 Thread Daniel Welling
Sorry for the very slow reponse time; it's a busy time of the year. Anyway, I've narrowed the problem quite a bit. Here is the kind of situation that causes the issue: import matplotlib.pyplot as plt plt.ion() f1=plt.figure() a1=f1.add_subplot(111) f2=plt.figure() a2=f2.add_subplot(111) a1.plo

Re: [Matplotlib-users] Updating/drawing all axes.

2011-10-30 Thread John Hunter
.draw() On Sun, Oct 30, 2011 at 10:51 AM, Daniel Welling wrote: > Greetings, MatPlotLibbers. > > Since 1.1, pyplot.draw() in interactive mode only updates the current axis. >  If I want to update many axes, I need to use sca() and draw() for each one. >  Is there a way to update all axes? I'm no

[Matplotlib-users] Updating/drawing all axes.

2011-10-30 Thread Daniel Welling
Greetings, MatPlotLibbers. Since 1.1, pyplot.draw() in interactive mode only updates the current axis. If I want to update many axes, I need to use sca() and draw() for each one. Is there a way to update all axes? Thanks. -dw -