| << cla | Graphics functions | clim >> |
| clf |
| clf(f) |
| F = clf(...) |
a scalar graphics object on an existing figure.
a graphics object: used figure graphics object.
clf clears the current figure.
f = figure();
x = linspace(0, 2*pi);
y = sin(3 * x);
plot(x, y)
sleep(5)
clf
| Version | Description |
|---|---|
| 1.0.0 | initial version |
Allan CORNET