How can we define equally- ranged bins in histogram?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
ishita agrawal
le 25 Août 2017
Commenté : Star Strider
le 25 Août 2017
Hi, Thank you for responding my previous questions. I have a dataset containing values between 0 to 1. I want to plot a histogram for bin ranges 0:0.1:1, i.e. [0-0.1, 0.1-0.2, 0.2-0.3......0.9-1.0]. Can anybody help with this? Thank you in advance.
0 commentaires
Réponse acceptée
Star Strider
le 25 Août 2017
The easiest way is to use linspace, choose the minimum and maximum values, and select the vector length to be one more than the number of bins (here 10) to define the edges:
edges = linspace(0, 1, 11);
2 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Histograms 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!