Does anyone know a simple way to remove the labels from the argument axis in a polar plot in MATLAB? My figures are small and I have to zoom in to see them, but when I do this the argument labels from one subplot get in the way of the other subplots.
Equally, if anyone knows of a way to solve this issue by rescaling the axis in the radial direction, or of any solution for that matter, then I would be very grateful. For the mean time I'll have to trim and re-size in Latex.
I tried the method here
How to remove Rho labels from Matlab polar plot?
but it didn't work.
here is some sample code
subplot(1,3,1,'align');
r = 10;
polar(t,abs((r.*exp(t.*1i) - (1+1i)).^2));
set(gca, 'fontsize', 20)
set(findall(gca, 'String', '0'),'String', ' ') %remove theta labels
hold on

set(findall(gca, 'type', 'text'),'string','')- Oleg