How to remove a gap between bars in histogram?
5 ビュー (過去 30 日間)
古いコメントを表示
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?
0 件のコメント
回答 (1 件)
Image Analyst
2016 年 10 月 9 日
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.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Histograms についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!