How to remove the formula text

2 views (last 30 days)
I was looking how to remove the formula text that appears under a polar plot. I know how to edit it to remove it, but i want to add it to my code so it is removed automatically.

Accepted Answer

Walter Roberson
Walter Roberson on 25 Apr 2018
Edited: Walter Roberson on 25 Apr 2018
After the ezpolar() call,
delete(findobj(gca, 'type', 'text'))
This works because the text() that is created with the formula has a visible handle, where-as the text() objects created for the various labels have hidden handles.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!