<< maxNumCompThreads | Core | nargin >> |
R = namelengthmax |
a double: the maximum variable name length
namelengthmax: Nelson allows 4096 as maximum length for variables and structures field names.
Working: identifier length 4096 characters
ID = ['A', char(double('0') * ones(1, namelengthmax -1 ))];
length(ID)
STR = [ID, ' = 3'];
execstr(STR)
Not Working: identifier length 4097 characters
ID = ['A', char(double('0') * ones(1, namelengthmax))];
length(ID)
STR = [ID, ' = 3'];
execstr(STR)
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET