Peak "coordinates of a histogram
5 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Damiano Capocci
le 9 Mar 2019
Commenté : Damiano Capocci
le 13 Mar 2019
Hi, I want to study the histogram of an array. This array has only one peak, I want to determine the bin related to the peak. I have just tried ksdensity() and then findpeaks() but if I want a good precision the hig number of points of ksdensity makes the process slow. Please could you tell me how to find out the bin related to the peak? A good hint could be to transform the histogram into a vector.
0 commentaires
Réponse acceptée
Star Strider
le 9 Mar 2019
Not at all certain what question you are asking. If you want to know the indices of the data assigned to each bin, see the histcounts (link) documentation on Determine Bin Placement (link).
If you are not using histcounts, consult the appropriate documentation for the function.
1 commentaire
Plus de réponses (1)
Steven Lord
le 10 Mar 2019
Are you creating the histogram (the graphics object) or binning the data using histcounts?
In the former case. retrieve the BinCounts and BinEdges properties from the histcounts object. Use max to identify the maximum count and its location, and index into the edges vector to identify the edges of that bin.
In the latter case, do the same thing with the first two outputs of histcounts.
Voir également
Catégories
En savoir plus sur Data Distribution Plots dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!