Advertisement
purxiz

Untitled

Oct 22nd, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MatLab 0.16 KB | None | 0 0
  1. function plot_histogram = plot_histogram(histogram)
  2.  
  3.     bar(histogram);
  4.     xlabel('intensity value');
  5.     ylabel('PMF');
  6.     axis([0 255 0 max(histogram)]);
  7. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement