In my polar plot in Matlab, I have default labels for Theta (0, 30, 60, .., 330) and Rho (20, 40, .., 100).
I can remove Theta label using command
set(findall(gca, 'String', '0'),'String', ' ');
Please advice how to remove Rho labels (20, 40, .., 100) from the figure.
To remove all labels simply type
Since the polar plot labels are hidden text objects placed around on the plot, you can not simply find them by accessing axes. To remove only some of them you will need to explicitly find the text objects containing those particular labels you want to delete. In your case, look for text objects containing Rho: