Get rid of "Figure 1" in the title of the figure
Posted
by
Alon Shmiel
on Stack Overflow
See other posts from Stack Overflow
or by Alon Shmiel
Published on 2012-06-07T09:20:57Z
Indexed on
2012/06/07
16:40 UTC
Read the original article
Hit count: 242
matlab
|matlab-figure
I have a figure that I want his name to be Step 2 of 3: Simulation Plot Window
, but its name is: figure 2: Step 2 of 3: Simulation Plot Window
.
How can I change his name to the name I want?
I don't know if it's necessary, but in the start of the code I wrote:
hFig = figure('Name','window 1','Visible','Off');
and Towards my code ends, I write:
hFig = figure('Name','Step 2 of 3: Simulation Plot Window','Menubar','none', 'Resize','off', ...
'WindowStyle','modal', 'Position',[300 300 1150 600]);
© Stack Overflow or respective owner