フィルターのクリア

How to get bin counts from max(histcount_plot)

4 ビュー (過去 30 日間)
mohamed madani
mohamed madani 2016 年 12 月 5 日
コメント済み: mohamed madani 2016 年 12 月 6 日
I have a histcount plot which uses two different vectors. I called them 'Peak' and 'Bin'. The 'Bin' is obviously bins and 'Peak' is the data that goes in each bin. So then I made a histcount; Cnts=histcounts(Peak,Bin). Now I need a way to find the peak that this histcount will give. By peak, I mean finding the highest count and then find the corresponding bin number. I then need to plot those along with the histcount which I can do using the 'hold' command. I'm just having a problem with finding the Bin number that has the highest counts.

採用された回答

Walter Roberson
Walter Roberson 2016 年 12 月 5 日
Use the two-output version of max() applied to Cnts. The second output gives you bin number and you can use it to index bins to get the location
  2 件のコメント
mohamed madani
mohamed madani 2016 年 12 月 6 日
How do you use the two-output version of max(). Is it something like 'max(Cnts,Bin)'?
mohamed madani
mohamed madani 2016 年 12 月 6 日
Nevermind, I figured it out. It works now. Thank you so much.

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

その他の回答 (1 件)

Jacob Ziesenis
Jacob Ziesenis 2016 年 12 月 5 日
I would try:
find(N==max(N))
  1 件のコメント
Walter Roberson
Walter Roberson 2016 年 12 月 5 日
Note: this can give you multiple outputs, if the maximum happens to be duplicated.

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

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by