axes
Create a new axes or set current axes by passing a handle argument.
Syntax
h = axes()
h = axes(handle)
h = axes(parent)
h = axes(..., property, value, ...)
Inputs
- handle
- Handle of an axes object which is set as the active axes.
- parent
- Handle of a container object, which could be a figure, uipanel, or uitab.
- property
- Properties that control the appearance of the axes object.
- value
- Value of properties.
Outputs
- h
- Axes handle.
Example
figure();
p = uipanel('position',[10 10 600 400]);
ax = axes(p,'position',[0.1 0.1 0.8 0.8]);
figure();
t = uitabgroup('position', [0 0 600 400]);
tab1 = uitab(t);
tab2 = uitab(t);
ax = axes(tab1,'position', [0.0 0.0 0.5 0.5]);