cla
cla(ax)
ca = cla(...)
| Parameter | Description |
|---|---|
| ax | a scalar graphics object on an existing axes. |
| Parameter | Description |
|---|---|
| ca | a graphics object: used axes graphics object. |
cla clears the current axes.
f = figure();
x = linspace(0, 2*pi);
y = sin(3 * x);
plot(x, y)
sleep(5)
cla
| Version | Description |
|---|---|
| 1.0.0 | initial version |