clf
clf(f)
F = clf(...)
| Parameter | Description |
|---|---|
| f | a scalar graphics object on an existing figure. |
| Parameter | Description |
|---|---|
| F | 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 |