Hello,

I am having problems with the WxAgg backend on the Mac not updating
figures.  Using this test code:

import time
from pylab import *
x = linspace(0,6*pi,255)
y = sin(x)
h,=plot([0],[0],'g-')
show()
for i in xrange(250,len(x),25):
   h.set_data(x[:i],y[:i])
   axis([0,6*pi,-2,2])
   draw()
   time.sleep(0.5)
   print i

Nothing changes until the script finishes.  I've tried both 0.91.2 and
0.98.  I don't seem to have these problems under Linux.  Is there a
standard fix that I am missing? (The animation simple_anim_wx.py
didn't work for me either).

Thanks,

Marshall

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to