How to display all figures

42 ビュー (過去 30 日間)
Reyasudin
Reyasudin 2013 年 6 月 24 日
Hello,
when I run my matlab m file. Only the last plotted figure displayed. May I know what should I do in order to display all figure plotted in the matlab script.

採用された回答

Azzi Abdelmalek
Azzi Abdelmalek 2013 年 6 月 24 日
編集済み: Azzi Abdelmalek 2013 年 6 月 24 日
%each plot in one figure
figure(1)
plot(x1,y1)
figure(2)
plot(x2,y2)
%and so on
%All plot in one figure
figure
hold on
plot(x1,y1)
plot(x2,y2)
%and so o
  1 件のコメント
Reyasudin
Reyasudin 2013 年 6 月 24 日
ok tq.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCreating, Deleting, and Querying Graphics Objects についてさらに検索

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by