필터 지우기
필터 지우기

How to display only current figure

조회 수: 2 (최근 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 CenterFile Exchange에서 Graphics Object Identification에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by