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
.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
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
-