Set axis limits and aspect ratios
axis uses a
predefined style to set the limits and scaling. For example, specify
the style as styleequal to use equal data unit lengths
along each axis.
axis sets whether MATLAB® automatically
chooses the limits or not. Specify the mode as modemanual, auto,
or one of the semiautomatic options, such as 'auto x'.
axis , where ydirectionydirection is ij,
places the origin at the upper left corner of the axes. The y values
increase from top to bottom. The default for ydirection is xy,
which places the origin at the lower left corner. The y values
increase from bottom to top.
axis , where visibilityvisibility is off,
turns off the display of the axes background. Plots in the axes still
display. The default for visibility is on,
which displays the axes background.
returns
the x-axis and y-axis limits
for the current axes. For 3-D axes, it also returns the z-axis
limits. For polar axes, it returns the theta-axis
and r-axis limits.lim = axis
You can combine multiple input arguments together, for example, axis
image ij . The options are evaluated from left to right.
Subsequent options can overwrite properties set by prior ones.
If axes do not exist, the axis function
creates them.
Use hold on to keep plotting functions
from overriding preset axis limits.