subplot: combine histogram and cdfplot with 2 different y-scales
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Within a subplot I want to combine histogram and cumulative distribution function (cdfplot): subplot('Position',[.3 .05 .6 .2]) % a1 = axes('Parent',f); % h1=histogram(histo,numOfBins,'Normalization','probability','Orientation','vertical'); h1=histogram(histo,numOfBins,'Normalization','probability','Orientation','vertical'); % set(h1,'FaceColor','r') % set(h1.Parent,'YAxisLocation','left') hold on h2=cdfplot(histo); set(h1.Parent,'YAxisLocation','right') grid on
I need two Y-Scales (left: frequency of oberservations, right: cumulative from 0 to 1); otherwise the histogram is hardly visible. I can set one YAxisLocation but not two different ones. Any help appreciated.
0 commentaires
Réponses (0)
Voir également
Catégories
En savoir plus sur Histograms dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!