How to plot figure for multiple values
Afficher commentaires plus anciens
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 commentaires
José-Luis
le 9 Sep 2014
What have you tried so far? The documentation for plot() will take you a long way;
doc plot
israa
le 9 Sep 2014
José-Luis
le 9 Sep 2014
Have you read the documentation?
israa
le 9 Sep 2014
José-Luis
le 9 Sep 2014
data = rand(10,3);
plot(data);
israa
le 9 Sep 2014
Réponse acceptée
Plus de réponses (1)
Andrew Reibold
le 9 Sep 2014
When a figure is open, use
hold on
before plotting to keep putting more plots on the same figure
Catégories
En savoir plus sur Annotations dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!