Advertisement
Guest User

Untitled

a guest
Aug 28th, 2015
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. clc
  2. clear all
  3.  
  4.  
  5. N1=50;
  6. x = 2*rand([1 N1]);
  7. N2 = N1;
  8. y = 1+4*rand([1 N1]);
  9.  
  10.  
  11. subplot(2,1,1)
  12. hist(x)
  13. xlabel('Xlabel')
  14. subplot(2,1,2)
  15. hist(y)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement