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

    %% Display _r_-Axis Tick Labels as Percentages
% Create a polar plot. Display the tick labels along the _r_-axis as
% percentages.

th = linspace(0,2*pi,10);
r = [11 49 95 68 74 75 88 76 65 67];
polarplot(th,r,'o')
rtickformat('percentage')