matlab关键字

使用iskeyword函数可以列出matlab的系统关键字

 1 >> iskeyword
 2 
 3 ans = 
 4 
 5     'break'
 6     'case'
 7     'catch'
 8     'classdef'
 9     'continue'
10     'else'
11     'elseif'
12     'end'
13     'for'
14     'function'
15     'global'
16     'if'
17     'otherwise'
18     'parfor'
19     'persistent'
20     'return'
21     'switch'
22     'try'
23     'while'
24 
25 >> 
原文地址:https://www.cnblogs.com/cszlg/p/2576981.html