Borrar filtros
Borrar filtros

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

1 visualización (últimos 30 días)
Hassanean
Hassanean el 16 de Sept. de 2017
Comentada: Hassanean el 17 de Sept. de 2017
  2 comentarios
per isakson
per isakson el 16 de Sept. de 2017
Doc says:
plot(X1,Y1,LineSpec1,...,Xn,Yn,LineSpecn)
Hassanean
Hassanean el 16 de Sept. de 2017
Thanks

Iniciar sesión para comentar.

Respuestas (1)

Jan
Jan el 16 de Sept. de 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-*');

Categorías

Más información sobre Graphics Objects en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by