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

    %% Specify _theta_-Axis Tick Label Format for Specific Polar Axes
% Create a polar plot and assign the polar axes object to the variable
% |pax|. Ensure that |thetatickformat| affects the polar axes you just
% created by passing |pax| as the first input argument to the function.

polarplot(1:10,'->')
pax = gca;
thetatickformat(pax,'degrees')