what are the reserved words in Matlab 2011b
Afficher commentaires plus anciens
Is there any command using which we can get the list of reserved words used in Matlab? ex- iskeyword command gives list of some keyword, but there are lots of other reserved words ex- realmin. we want the list of all the reservd words?
1 commentaire
Arvind Pandey
le 18 Avr 2013
Réponses (3)
Sean de Wolski
le 15 Avr 2013
Modifié(e) : Sean de Wolski
le 15 Avr 2013
You can find all of the keywords by opening iskeyword.m
edit iskeyword
As for builtin functions etc. You can test if it is a function or variable by running:
which -all your_name
This will return what everything is for the string your_name
Walter Roberson
le 15 Avr 2013
0 votes
realmin is not a reserved keyword: it is a function, and you can create a variable of the same name.
The reserved keywords are the constructs such as "if" that will always be recognized as MATLAB syntax and cannot be assigned a value.
1 commentaire
Arvind Pandey
le 18 Avr 2013
Jason Ross
le 18 Avr 2013
0 votes
This blog entry explains the change
In the comments is a link to a utility which you may find very useful:
Catégories
En savoir plus sur MATLAB Coder dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!