Differences between revisions 1 and 2
Revision 1 as of 2010-12-18 06:33:26
Size: 398
Editor: beesanna
Comment: Bead_Moving
Revision 2 as of 2010-12-18 07:05:24
Size: 414
Editor: beesanna
Comment:
Deletions are marked like this. Additions are marked like this.
Line 16: Line 16:
     set(bead)
  • Book

    Advanced Engineering Mathematics

    Author

    Erwin Kreyszig

    Edition

    8th Edition

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()

  • Solution by:

    • Beesanna,student,SNIST

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