clf()
theta=linspace(0,2*pi,1000)
x=cos(theta)
y=sin(theta)
hbead=plot(x[1],y[1],'o')
axis([-1,1,-1,1])
#axis('square')
for i in  range(2,size(theta)):
    set(hbead)
    plot(x[i],y[i],'o')
    show()

Kreyszig-6.7-1 (last edited 2010-12-18 07:43:11 by telugupraveenkumar)