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

    %% Return r-Axis Limits
% Create a polar plot and return the _r_-axis limits. 

theta = 0:0.01:2*pi;
rho = sin(2*theta).*cos(2*theta);
polarplot(theta,rho)

%%
rl = rlim