how to locate bin center at appropriate integer value?
Show older comments
subplot(2,1,1)
histogram(LH);
grid on;
title("Graph of (LH)");
xlabel("LH");
ylabel("Scores");
hold on;
Answers (1)
h = histogram(LH) ;
h
Now h has all the information you want. Pick the one you want.
Categories
Find more on Histograms in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!