Clear Filters
Clear Filters

how to locate bin center at appropriate integer value?

3 views (last 30 days)
subplot(2,1,1)
histogram(LH);
grid on;
title("Graph of (LH)");
xlabel("LH");
ylabel("Scores");
hold on;

Answers (1)

KSSV
KSSV on 29 Oct 2020
Edited: KSSV on 29 Oct 2020
h = histogram(LH) ;
h
Now h has all the information you want. Pick the one you want.

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!