フィルターのクリア

How to display only current figure

4 ビュー (過去 30 日間)
Reyasudin
Reyasudin 2013 年 6 月 3 日
Hello,
I am currently doing some work in Matlab script (m file). It will generate a lot of figure when I run the file, but I only want it to display only the last figure.

採用された回答

Image Analyst
Image Analyst 2013 年 6 月 3 日
Then close them
h = figure;
% now close it
close h;
% Open a new one
h = figure;
% and so on.
Or just do
close all;
right before you show your last figure.
  1 件のコメント
Reyasudin
Reyasudin 2013 年 6 月 3 日
Thank you very much, this is what I want.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGraphics Object Identification についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by