How to get Bin Edges at specific Value point (Maximum value) in histogram.
9 ビュー (過去 30 日間)
古いコメントを表示
Hi,
I hava a simple query. I just want to know the BinEdges value at specific peak.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1654086/image.png)
So, I am only intrested in the Peak value and its Bin edges values. How I can get this.
H=histogram(Data);
HMAX=max(H.Values,[],"all");
How to get Bin edges at max value point,ie., 164209.
Kindly advise.
0 件のコメント
採用された回答
Dyuman Joshi
2024 年 3 月 28 日
load('Data.mat')
H = histogram(DATA)
%Get the index of the max value alongside
[HMAX, idx] = max(H.Values,[],"all")
%USe the index to get the corresponding bin edges
H.BinEdges([idx idx+1])
2 件のコメント
その他の回答 (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!