How can I customize the text of the figure window title in MATLAB 7.6 (R2008a)?
72 views (last 30 days)
Show older comments
MathWorks Support Team
on 27 Jun 2009
Edited: MathWorks Support Team
on 13 Dec 2021
I would like to create a new figure, and set the figure window's title to a custom title. When I use the TITLE command, a title is placed inside the window over the axes which gets hidden by my image.
Accepted Answer
MathWorks Support Team
on 13 Dec 2021
Edited: MathWorks Support Team
on 13 Dec 2021
You can add your own title to a figure window's title bar by setting the Name property to the desired title and you can turn off the figure number by setting the NumberTitle property to 'off' as follows:
figure('Name','Simulation Plot Window','NumberTitle','off')
This is mentioned in the MATLAB documentation at:
0 Comments
More Answers (0)
See Also
Categories
Find more on Title in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!