Azzera filtri
Azzera filtri

How to display only current figure

4 visualizzazioni (ultimi 30 giorni)
Reyasudin
Reyasudin il 3 Giu 2013
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.

Risposta accettata

Image Analyst
Image Analyst il 3 Giu 2013
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.

Più risposte (0)

Categorie

Scopri di più su Graphics Object Identification in Help Center e File Exchange

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by