Differences between revisions 2 and 3
Revision 2 as of 2010-12-17 10:41:50
Size: 426
Editor: anvesh
Comment:
Revision 3 as of 2010-12-17 11:17:40
Size: 476
Editor: anvesh
Comment:
Deletions are marked like this. Additions are marked like this.
Line 12: Line 12:
hbead=plot(x[1],y[1],'o') plot(x[1],y[1],'o')
plot(x[1],y[1],'.',color='r')
Line 16: Line 17:
    plot(x[k],y[k],'.')
  • Book

    Linear Algebra

    Author

    Gilbert Strang

    Edition

clf()
theta=linspace(0,2*pi,1000)
x=cos(theta)
y=sin(theta)
plot(x[1],y[1],'o')
plot(x[1],y[1],'.',color='r')
axis([-1,1,-1,1])
for k in range(2,size(theta)):
    plot(x[k],y[k],'o')
    plot(x[k],y[k],'.')

  • Solution by:

    • <Anvesh>, <Student>, <Student>

    • <Your Name>, <Profession>, <Organization>

Strang-6.7-2 (last edited 2010-12-17 11:17:40 by anvesh)