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

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

polarplot(1:10)
pax = gca;
rtickformat(pax,'percentage')