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

    %% Make Polar Axes Current Axes
% Create a figure with polar axes and assign the polar axes object to
% |pax|. Then, ensure |pax| is the current axes before calling the
% |polarplot| function. 

figure
pax = polaraxes;

polaraxes(pax)
polarplot(1:10)