Member of the plots class.
gcf
obj = gcf
Returns the reference to the current plot window. If no plot window exists, gcf generates a new plot window.
| Name | Description |
| obj | Returns the reference to the current plot window. obj is a reference to a plot window. |
This function is not supported in the LabVIEW Run-Time Engine if you request an output from the function. Either do not request an output or remove this function from scripts before you build a stand-alone application or shared library.
X = 0:1:10;
plot(X)
figure
Y = X.*X;
plot(Y)
obj = gcf