tf = isgraphics(GO)
tf = isgraphics(GO, type)
| Paramètre | Description |
|---|---|
| GO | Variable ou objet graphique. |
| type | Un vecteur de caractères ou une chaîne scalaire : 'axes', 'line', 'image', 'root', 'text', 'figure'. |
| Paramètre | Description |
|---|---|
| tf | Un scalaire logique. |
isgraphics vérifie si la variable est un objet graphique.
f = figure()
tf = isgraphics(f)
tf = isgraphics(f, 'figure')
tf = isgraphics(f, 'text')
f = 3
tf = isgraphics(f)
| Version | Description |
|---|---|
| 1.0.0 | version initiale |