How to get the limits of the highest frequency bin in a histogram?

13 ビュー (過去 30 日間)
Sarah A
Sarah A 2019 年 11 月 24 日
コメント済み: Sarah A 2019 年 11 月 24 日
Hello,
Is it possible to get the limits of the highest frequency bin in a histogram?. For example, in the attached figure, I have a histogram of three bins where the width of each bin is 1 and the bin of highest frequency is the second bin which is [0,1]. So, I need to write lines of code that find the highest frequency range of values which is here [0,1].
Regards,

採用された回答

KALYAN ACHARJYA
KALYAN ACHARJYA 2019 年 11 月 24 日
[counts,binLocations]=hist(data);
%find the bins of max(counts)
Then previous value & next value are limits
  1 件のコメント
Sarah A
Sarah A 2019 年 11 月 24 日
[counts,binLocations]=hist(data);
maimum=round(max(binLocations));
minimum=round(min(binLocations));
Thank you :)

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeHistograms についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by