| MATLAB Function Reference | ![]() |
Syntax
[flag] = figflag('figurename') [flag,fig] = figflag('figurename') [...] = figflag('figurename',silent)
Description
Use figflag to determine if a particular figure exists, bring a figure to the foreground, or set the window focus to a figure.
[flag] = figflag(' returns a figurename')
1 if the figure named 'figurename' exists and sends the figure to the foreground; otherwise this function returns 0.
[flag,fig] = figflag(' returns a figurename')
1 in flag, returns the figure's handle in fig, and sends the figure to the foreground, if the figure named 'figurename' exists. Otherwise this function returns 0.
[...] = figflag(' pops the figure window to the foreground if figurename',silent)
silent is 0, and leaves the figure in its current position if silent is 1.
Examples
To determine if a figure window named 'Fluid Jet Simulation' exists, type
If two figures with handles 1 and 3 have the name 'Fluid Jet Simulation', MATLAB returns:
See Also
Figure Windows for related functions
| fieldnames | figure | ![]() |