|
Size: 426
Comment:
|
← Revision 3 as of 2010-12-17 11:17:40 ⇥
Size: 476
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>
