R = namelengthmax
| Parameter | Description |
|---|---|
| R | a double: the maximum variable name length |
namelengthmax: Nelson allows 4096 as maximum length for variables and structures field names.
ID = ['A', char(double('0') * ones(1, namelengthmax -1 ))];
length(ID)
STR = [ID, ' = 3'];
execstr(STR)
ID = ['A', char(double('0') * ones(1, namelengthmax))];
length(ID)
STR = [ID, ' = 3'];
execstr(STR)
| Version | Description |
|---|---|
| 1.0.0 | initial version |