plot and hist in matlab

2 Ansichten (letzte 30 Tage)
reem
reem am 7 Apr. 2011
please anybody answer me How can I get two plot in one graph using bar or hist or plot
and how can I use ((hold and grid command)) with plot and hist
Thanks in advance

Akzeptierte Antwort

Matt Fig
Matt Fig am 7 Apr. 2011
Two histograms:
x = -2.9:0.1:2.9;
y = randn(10000,1);
hist(y,x)
h = findobj(gca,'Type','patch');
set(h,'FaceColor','r','EdgeColor','w')
z = randn(size(y))/3;
hold on % make sure next one shows up.
hist(z,x)
  5 Kommentare
Matt Fig
Matt Fig am 7 Apr. 2011
Does the second hist cover up the first? Try hist(True_probability,x) first, then doing hist(proestimated,x).
reem
reem am 7 Apr. 2011
I do that but nothing is changed
the same result appeared

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Mathematics finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by