Filter löschen
Filter löschen

Window title of figures in a for loop

1 Ansicht (letzte 30 Tage)
Debbie Oomen
Debbie Oomen am 3 Nov. 2017
Kommentiert: Debbie Oomen am 3 Nov. 2017
Please help!
I have two different loops. One that works with ii and one that works with i. Both of these loops need to plot figures but use different files. They are now plotted as follows: figure(i) and figure (ii+3) -- (3 because the i loop only needs to plot 3 figures). How can I change the titles for these figures? So that they correspond with the filename.
  1 Kommentar
KL
KL am 3 Nov. 2017
Do you really need two loops? How many files are you dealing with and what is the significance of having two loops? If you explain a bit more detail, maybe it could be simplified.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Fangjun Jiang
Fangjun Jiang am 3 Nov. 2017
try this, within your loop:
f=figure(i);
title('my title');
set(f,'Name','my window title');

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by