Filter löschen
Filter löschen

How can i plot the results of two separate m files in same figure window.

1 Ansicht (letzte 30 Tage)
I want to do this for comparative purpose

Antworten (1)

Azzi Abdelmalek
Azzi Abdelmalek am 19 Nov. 2013
plot(x1,y1,x2,y2)
%or
plot(x1,y1)
hold on
plot(x2,y2)
hold off
%or
plotyy(x1,y1,x2,y2)

Kategorien

Mehr zu Graphics Object Identification 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