Name
axes
— Create axes graphic object
Calling Sequence
axes
axes(h)
h=axes('Property',value,...)
Description
This command allows to create an axes object with arbitrary properties. See axes properties for
a complete list.
Example
clf
axes('Position',[0.1 0.1 0.8 0.6]);
surf;
axes('Position',[0 0.8 1 0.2]);
pcolor([1:10;1:10]);
Remark
Unlike subplot, the axes command does not delete
eventual overlapping axes.