<< clim | Graphics functions | colorbar >> |
close() |
close('all') |
close(name) |
close(ID) |
close(GO) |
tf = close(...) |
a scalar integer value: figure ID.
a scalar graphics object on an existing figure.
a scalar graphics object on an existing figure.
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 |
Allan CORNET