close()
close('all')
close(name)
close(ID)
close(GO)
tf = close(...)
| Parameter | Description |
|---|---|
| ID | a scalar integer value: figure ID. |
| GO | a scalar graphics object on an existing figure. |
| GO | a scalar graphics object on an existing figure. |
| Parameter | Description |
|---|---|
| tf | a scalar logical: true if figure was closed. |
close closes the current figure.
close(ID) closes the figure specified by figure ID.
close(GO) closes the figure specified by figure graphics object.
close('all') closes all figures.
f = figure(1)
close();
h = figure(3)
close(h)
f1 = figure()
f2 = figure()
close('all')
| Version | Description |
|---|---|
| 1.0.0 | initial version |