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

    %% Rotate r-Axis Tick Labels for Specific Polar Axes
% Create a polar plot and assign the polar axes object to the variable
% |pax|. Then, rotate the _r_-axis tick labels for the polar axes. Ensure
% that |rtickangle| affects |pax| by specifying the polar axes
% object as the first input argument.

polarplot(1:100)
pax = gca;
rtickangle(pax,45)