Set or query r-axis limits for polar axes
rlim('auto')
lets MATLAB® choose the r-axis
limits. This command sets the RLimMode
property
for the polar axes object to 'auto'
.
rlim('manual')
prevents the limits from
changing automatically. Use this option if you want to retain the
current limits when adding new data to the polar axes using the hold
on
command. This command sets the RLimMode
property
for the polar axes object to 'manual'
.
returns
the current value of the limits mode, which is either m
= rlim('mode')'auto'
or 'manual'
.
By default, the mode is automatic unless you specify limits or set
the mode to manual.