execstr(str)
execstr(str, 'nocatch')
bSuccess = execstr(str, 'errcatch')
| Paramètre | Description |
|---|---|
| str | chaîne : commande à exécuter |
| Paramètre | Description |
|---|---|
| bSuccess | un logique : vrai ou faux si la commande échoue |
Exécute la chaîne fournie comme une commande dans l'environnement Nelson.
execstr('b = ''hello''; disp(b);')
execstr('b = yyyy')
execstr('b = yyyy', 'nocatch')
r = execstr('b = yyyy', 'errcatch')
| Version | Description |
|---|---|
| 1.0.0 | version initiale |