how to locate bin center at appropriate integer value?

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

Asked:

on 29 Oct 2020

Edited:

on 29 Oct 2020

Community Treasure Hunt

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

Start Hunting!