Advertisement
Guest User

Untitled

a guest
May 6th, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. N = 3;
  2. T = 10;
  3. t = 0:T;
  4. x1 = randn(N,T+1);
  5. x2 = repmat(randn(N,1), 1, T+1);
  6.  
  7. figure
  8. subplot(3,1,1); stem(t, x1(1,:));
  9. subplot(3,1,2); stem(t, x1(2,:));
  10. subplot(3,1,3); stem(t, x1(3,:));
  11.  
  12. figure
  13. subplot(3,1,1); stem(t, x2(1,:));
  14. subplot(3,1,2); stem(t, x2(2,:));
  15. subplot(3,1,3); stem(t, x2(3,:));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement