How To... Plot Multiple Data Sets on the Same plot
1 回表示 (過去 30 日間)
古いコメントを表示
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/167218/image.png)
2 件のコメント
回答 (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-*');
参考
カテゴリ
Help Center および File Exchange で Line Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!