overlay 2 histograms one over the other
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Hello,
I'm ploting my data as histograms (there are 2 data sets, one is the original and the other is the the same set that been processed- basicly the relation between them is the X axis)
I want to present the 2 sets one over the other, but what I'm getting is this
how can I make the picks to be one over the other? as they are in the real data sets
another thing, is theres a way to present histogram as semi logarithmic with respect to Y axis?
Ge_energy = Ge_energy*0.3;
Ge_table.energy = Ge_table.energy*0.3;
figure(2)
histogram(Ge_energy,'DisplayStyle','stairs','BinWidth',0.1)
hold on
histogram(Ge_table.energy,'DisplayStyle','stairs','BinWidth',0.1)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/294407/image.jpeg)
0 Kommentare
Antworten (0)
Siehe auch
Kategorien
Mehr zu Histograms finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!