How to get bin counts from max(histcount_plot)
显示 更早的评论
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.
采纳的回答
更多回答(1 个)
Jacob Ziesenis
2016-12-5
I would try:
find(N==max(N))
1 个评论
Walter Roberson
2016-12-5
Note: this can give you multiple outputs, if the maximum happens to be duplicated.
类别
在 帮助中心 和 File Exchange 中查找有关 Data Distribution Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!