How To... Plot Multiple Data Sets on the Same plot
6 ビュー (過去 30 日間)
古いコメントを表示

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-*');
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!