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

6 Ansichten (letzte 30 Tage)
Hassanean
Hassanean am 16 Sep. 2017
Kommentiert: Hassanean am 17 Sep. 2017
  2 Kommentare
per isakson
per isakson am 16 Sep. 2017
Doc says:
plot(X1,Y1,LineSpec1,...,Xn,Yn,LineSpecn)
Hassanean
Hassanean am 16 Sep. 2017
Thanks

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Jan
Jan am 16 Sep. 2017
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-*');

Kategorien

Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by