How To... Plot Multiple Data Sets on the Same plot
古いコメントを表示

2 件のコメント
per isakson
2017 年 9 月 16 日
Doc says:
plot(X1,Y1,LineSpec1,...,Xn,Yn,LineSpecn)
Hassanean
2017 年 9 月 16 日
回答 (1 件)
Jan
2017 年 9 月 16 日
Or:
plot(1:10, rand(1, 10), 'r-+');
hold('on');
plot(1:10, rand(1, 10), 'g-d');
plot(1:10, rand(1, 10), 'b-*');
カテゴリ
ヘルプ センター および File Exchange で 2-D and 3-D Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!