Need list of all not recommended keywords
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Where can i get all not recommended keywords in R2019b. Could you guys Please tell me as soon as possible.
3 comentarios
Guillaume
el 17 de Oct. de 2019
Editada: Walter Roberson
el 5 de Dic. de 2019
Some context for the question would be welcome. For a start it's not even clear what is meant by keword. For what matlab considers to be a keyword, see Ekemini's answer.
Walter Roberson
el 5 de Dic. de 2019
Using the names of any of the functions in basic MATLAB is also not recommended. For example avoid using sum as the name of a variable.
A few days ago we saw someone use ones as the name of a variable, and then got confused over why their calls to the function ones were not working.
Respuestas (3)
Ekemini Stephen
el 17 de Oct. de 2019
To obtain a list of all MATLAB keywords, use 'iskeyword' command and the results are shown below. 'break' 'case' 'catch' 'classdef' 'continue' 'else' 'elseif' 'end' 'for' 'function' 'global' 'if' 'otherwise' 'parfor' 'persistent' 'return' 'spmd' 'switch' 'try' 'while'
0 comentarios
shanjmuka sri ranganadham
el 11 de Nov. de 2020
hlo
can you say the keywords used in matlab
1 comentario
Walter Roberson
el 11 de Nov. de 2020
{'break' }
{'case' }
{'catch' }
{'classdef' }
{'continue' }
{'else' }
{'elseif' }
{'end' }
{'for' }
{'function' }
{'global' }
{'if' }
{'otherwise' }
{'parfor' }
{'persistent'}
{'return' }
{'spmd' }
{'switch' }
{'try'
Ver también
Categorías
Más información sobre Startup and Shutdown en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!