![]() | Download Help (Windows Only) |
Owning Class: plots
Requires: MathScript RT Module
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. |
The following table lists the support characteristics of this function.
Supported in the LabVIEW Run-Time Engine | No (always ignored) |
Supported on RT targets | Yes |
Suitable for bounded execution times on RT | Not characterized |
X = 0:1:10;
plot(X)
input('Wait a moment ...');
close
Helpful
Not Helpful