<< bone | Graphics functions | clf >> |
cla |
cla(ax) |
ca = cla(...) |
a scalar graphics object on an existing axes.
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 |
Allan CORNET