Clear Filters
Clear Filters

How to remove a gap between bars in histogram?

14 views (last 30 days)
Hello all, I would like to remove gaps between bars in a histograms, I attached you my figures for your record. Due to the fact that I had a big vector, I just write its dimension;
K=467*1 double;
h1=histogram(k,'Normalization','probability','FaceColor','k');
Do you know how to remove the gap?

Answers (1)

Image Analyst
Image Analyst on 9 Oct 2016
There are no gaps between the bins. You can set the EdgeColor to be 'none' if you want. There are missing bins because you have gaps in your data - i.e. you have no data with values between 1.2 and 1.3 so because the height of that bin is zero, it might appear to be a gap, but it's not a gap in the display - it's a gap in your data. You can't get rid of it unless you change your bin width or change your data.

Tags

Community Treasure Hunt

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

Start Hunting!