フィルターのクリア

How To... Plot Multiple Data Sets on the Same plot

3 ビュー (過去 30 日間)
Hassanean
Hassanean 2017 年 9 月 16 日
コメント済み: Hassanean 2017 年 9 月 17 日
  2 件のコメント
per isakson
per isakson 2017 年 9 月 16 日
Doc says:
plot(X1,Y1,LineSpec1,...,Xn,Yn,LineSpecn)
Hassanean
Hassanean 2017 年 9 月 16 日
Thanks

サインインしてコメントする。

回答 (1 件)

Jan
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 ExchangeGraphics Objects についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by