How to plot figure for multiple values
Mostrar comentarios más antiguos
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 comentarios
José-Luis
el 9 de Sept. de 2014
What have you tried so far? The documentation for plot() will take you a long way;
doc plot
israa
el 9 de Sept. de 2014
José-Luis
el 9 de Sept. de 2014
Have you read the documentation?
israa
el 9 de Sept. de 2014
José-Luis
el 9 de Sept. de 2014
data = rand(10,3);
plot(data);
israa
el 9 de Sept. de 2014
Respuesta aceptada
Más respuestas (1)
Andrew Reibold
el 9 de Sept. de 2014
When a figure is open, use
hold on
before plotting to keep putting more plots on the same figure
Categorías
Más información sobre Annotations en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!