
Hello I need a code that gives me the local minimum of a histogram please ?
3 views (last 30 days)
Show older comments
I created 12 histograms for 12 frames and I need to get the local minimums of these histograms.
0 Comments
Answers (1)
Mathieu NOE
on 21 Apr 2022
hello
maybe this
the local minima are the red diamonds

x = randn(1000,1);
h = histogram(x);
Values = h.Values;
BinCounts = h.BinCounts;
BinEdges = h.BinEdges;
BinWidth = h.BinWidth;
centers = BinEdges(2:end) - BinWidth/2;
% find min values
ind = islocalmin(Values);
hold on
plot(centers(ind),Values(ind),'dr');
hold off
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!