How to plot figure for multiple values
Ältere Kommentare anzeigen
Hi all
I have 15 numbers.mat files , I calculate the max ,mean and min for each one.
My question is how to plot the max,mean and min as the figure below?

6 Kommentare
José-Luis
am 9 Sep. 2014
What have you tried so far? The documentation for plot() will take you a long way;
doc plot
israa
am 9 Sep. 2014
José-Luis
am 9 Sep. 2014
Have you read the documentation?
israa
am 9 Sep. 2014
José-Luis
am 9 Sep. 2014
data = rand(10,3);
plot(data);
israa
am 9 Sep. 2014
Akzeptierte Antwort
Weitere Antworten (1)
Andrew Reibold
am 9 Sep. 2014
When a figure is open, use
hold on
before plotting to keep putting more plots on the same figure
Kategorien
Mehr zu Annotations finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!