Add title to current axes
29 views (last 30 days)
Show older comments
How one can add title to the plot without using "TITLE" Command???? You cannot even use the figure GUI ?
Can anyone give me an answer?
3 Comments
Guillaume
on 25 Feb 2015
What a stupid interview question! Why not use the tool that's specifically designed for the job?
Accepted Answer
Jos (10584)
on 25 Feb 2015
set(get(gca, 'title'), 'string', 'My First Title')
2 Comments
dpb
on 25 Feb 2015
Still, if you can use set, why can't you use title? It also can accept a handle and is less complex syntax.
title(gca,'Your title text')
More Answers (1)
dpb
on 25 Feb 2015
Just reread the question -- guess I didn't follow before. Yes, "TITLE" is included as an option under the "Insert" menu item on figures.
0 Comments
See Also
Categories
Find more on Title in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!