clf
t=linspace(0,2*pi,1000)
x=cos(t)
y=sin(t)
bead=plot(x,y,marker='.',markersize=8)
axis([-1,1,-1,1])
k=2
for k in t:
     set(bead)
     plot(x[k],y[k],'o')
     show()

Kreyszig-6.19_example2 (last edited 2010-12-18 07:05:24 by beesanna)