eval
. This prevents
Furthermore, concatenated character vectors within an eval
statement are often difficult to read. This makes code less clear and causes
issues with sharing and maintaining code.
To allow
Old | New |
---|---|
str = ([ 'save("a.mat");']);
|
save("a.mat");
|