Advertisement
Guest User

Histogram help

a guest
Apr 19th, 2020
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. function histogram(file)
  2.  
  3. fh = fopen(file);
  4. line = fgetl(fh);
  5. vals = double(line)
  6.  
  7.  
  8. figure;
  9. histogram(vals);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement