How to plot figure for multiple values
古いコメントを表示
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 件のコメント
José-Luis
2014 年 9 月 9 日
What have you tried so far? The documentation for plot() will take you a long way;
doc plot
israa
2014 年 9 月 9 日
José-Luis
2014 年 9 月 9 日
Have you read the documentation?
israa
2014 年 9 月 9 日
José-Luis
2014 年 9 月 9 日
data = rand(10,3);
plot(data);
israa
2014 年 9 月 9 日
採用された回答
その他の回答 (1 件)
Andrew Reibold
2014 年 9 月 9 日
When a figure is open, use
hold on
before plotting to keep putting more plots on the same figure
カテゴリ
ヘルプ センター および File Exchange で Annotations についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!