How to get Bin Edges at specific Value point (Maximum value) in histogram.
7 views (last 30 days)
Show older comments
Abdul Hannan Qureshi
on 28 Mar 2024
Commented: Dyuman Joshi
on 28 Mar 2024
Hi,
I hava a simple query. I just want to know the BinEdges value at specific peak.
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 Comments
Accepted Answer
Dyuman Joshi
on 28 Mar 2024
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 Comments
More Answers (0)
See Also
Categories
Find more on Histograms in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!