How can i plot the results of two separate m files in same figure window.
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
I want to do this for comparative purpose
1 comentario
Walter Roberson
el 19 de Nov. de 2013
duplicated by http://www.mathworks.co.uk/matlabcentral/answers/106709-how-can-results-of-two-separate-m-files-be-plotted-in-same-figure-window which should be merged with it.
Respuestas (1)
Azzi Abdelmalek
el 19 de Nov. de 2013
plot(x1,y1,x2,y2)
%or
plot(x1,y1)
hold on
plot(x2,y2)
hold off
%or
plotyy(x1,y1,x2,y2)
0 comentarios
Ver también
Categorías
Más información sobre Interactive Control and Callbacks 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!