cf = gcf()
| Parameter | Description |
|---|---|
| cf | a graphics object: figure graphics object. |
cf = gcf() returns the current figure graphics object.
If a figure does not exist, gcf() creates a figure and returns its graphics object.
cf = gcf();
root = groot();
isequal(root.CurrentFigure, cf)
| Version | Description |
|---|---|
| 1.0.0 | initial version |