www.gusucode.com > graphics 案例源码程序 matlab代码 > graphics/SetThetaAxisTickLabelsBackToDefaultLabelsExample.m

    %% Set theta-Axis Tick Labels Back to Default Labels
% Create a polar plot and specify the _theta_-axis tick values and
% corresponding labels. Then, set the _theta_-axis tick values and labels
% back to the default values.

polarplot(1:100)
thetaticks([45 135 225 315])
thetaticklabels({'NE','NW','SW','SE'})

%%
thetaticks('auto')
thetaticklabels('auto')