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

5 ビュー (過去 30 日間)
harsimran kaur
harsimran kaur 2013 年 11 月 19 日
コメント済み: Walter Roberson 2013 年 11 月 19 日
I want to do this for comparative purpose

回答 (1 件)

Azzi Abdelmalek
Azzi Abdelmalek 2013 年 11 月 19 日
plot(x1,y1,x2,y2)
%or
plot(x1,y1)
hold on
plot(x2,y2)
hold off
%or
plotyy(x1,y1,x2,y2)

カテゴリ

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