<< isValidGraphicsProperty | Graphics functions | ishold >> |
tf = isgraphics(GO) |
tf = isgraphics(GO, type) |
variable or graphics object.
a character vector or scalar string: 'axes', 'line', 'image', 'root', 'text', 'figure'.
a scalar logical.
isgraphics checks is variable is an graphics object.
f = figure()
tf = isgraphics(f)
tf = isgraphics(f, 'figure')
tf = isgraphics(f, 'text')
f = 3
tf = isgraphics(f)
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET