arpit01

TEST 1

Nov 28th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. t=linspace(0,2*pi,1000)
  2. y=sin(t)
  3. subplot(2,2,1)
  4. plot(t,y)
  5. t=linspace(0,2*pi,1000)
  6. y2=sin(t-pi/4)
  7. subplot(2,2,2)
  8. plot(t,y2)
  9. t=linspace(0,2*pi,1000)
  10. y3=sin(2*t-pi/4)
  11. subplot(2,2,3)
  12. plot(t,y3)
  13. t=linspace(0,2*pi,1000)
  14. y4=sin(-2*t-pi/4)
  15. subplot(2,2,4)
  16. plot(-t,y4)
Add Comment
Please, Sign In to add comment