clear titles in gui

25 views (last 30 days)
Elysi Cochin
Elysi Cochin on 21 Oct 2014
Answered: Tejaswini Ramesh on 18 Feb 2019
how can i clear the title in the gui....
i used
cla('reset')
but it clears only the last axes title? how to clear all titles....

Accepted Answer

Orion
Orion on 21 Oct 2014
Edited: Orion on 21 Oct 2014
Hi,
something like
delete(findall(findall(gcf,'Type','axe'),'Type','text'))
delete all text (title is a text) whos parent is an axe.
  1 Comment
Elysi Cochin
Elysi Cochin on 22 Oct 2014
thank u sir... its working...

Sign in to comment.

More Answers (1)

Tejaswini Ramesh
Tejaswini Ramesh on 18 Feb 2019
How to make the title in every axes visible or invisible instead of deleting them completely?

Tags

Community Treasure Hunt

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

Start Hunting!