Member of the plots class.
close
close all
close(a)
Closes figures that you create with commands from the plots class. close closes the current figure. close all closes all figures. close(a) closes figure a.
| Name | Description |
| a | Specifies the figure number you want to close. a is a positive integer. LabVIEW generates an error if a is not an integer or if a is an integer that does not correspond to an existing window. |
This function is not supported in the LabVIEW Run-Time Engine. This function can remain in your scripts when you build a stand-alone application or shared library, but the LabVIEW Run-Time Engine does not execute this function.
X = 0:1:10;
plot(X)
input('Wait a moment ...');
close