HI, I have a question regarding histogram plots in matlab
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Anurag Bhattacharjee
le 20 Août 2019
Commenté : Anurag Bhattacharjee
le 20 Août 2019
I have a column vector max_ratio that contains values ranging from 0 upto 60. There are roughly 70,000 values inside this vector and almost 69,500 of these values fall within 0 and 10. As a result when I try to plot the histogram the values above 10 don't properly show.
Is there a way to lump the values above 10 together and show it at 10? the values before 10 will show up normally but all the values above 10 will lump together without going further than 10 along x-axis.
I am attaching the code and result I get from it below.
myhist1 = histogram(max_ratio_o,100);
hold on;
BinCenters = (myhist1.BinEdges(2:end)+myhist1.BinEdges(1:end-1))/2;
plot(BinCenters,myhist1.Values,'r-x')
title('Elements in physical space');
xlabel('Max edge length');
ylabel('No. of elements');
0 commentaires
Réponse acceptée
Ted Shultz
le 20 Août 2019
Yes, use the optional edged arguement of histogram.
you can see more here: histogram doc
edges = [1:9 10];
h = histogram(x,edges);
1 commentaire
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!