Advertisement
Guest User

Untitled

a guest
Oct 18th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. T = 0.5 + 4.0*np.cos(l) + 1.0*np.sin(l)
  2. l = np.linspace(0.5,6.,101)
  3. pl.plot(l,T,'k',theta,data,'o')
  4. pl.xlabel('X')
  5. pl.ylabel('Y')
  6. pl.title('Linear Least Squares Example')
  7. pl.grid('on')
  8. pl.axis([0,7,-4,5])
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement