How can I customize the text of the figure window title in MATLAB 7.6 (R2008a)?

72 views (last 30 days)
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
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:

More Answers (0)

Tags

No tags entered yet.

Products

Community Treasure Hunt

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

Start Hunting!