can we run codes from 2nd line onwards?
1 回表示 (過去 30 日間)
古いコメントを表示
I am running my codes externally i.e. calling one *.m file from another using "run(filename)" command.
Can I call this run(filename) from 2nd line onwards or can i skip few lines?
As first line contains clear command, it clears all the previous variables.
1 件のコメント
Stephen23
2021 年 2 月 9 日
"As first line contains clear command, it clears all the previous variables."
A much better solution would be to write functions instead of scripts.
And avoid programmatic use of clear, which is massively overused by beginners and yet rarely required.
採用された回答
Walter Roberson
2021 年 2 月 9 日
Not exactly. You cannot tell MATLAB to skip the first line of a file during run(). However, you can read the content of the file, remove the first line, and execute that content.
temporary_string = fileread(filename);
temporary_string = regexprep(temporary_string, '^[^\n]*\n', ''); %delete first line
eval(temporary_string)
Strictly speaking, this is not equivalent to run(), in that run cd's to the directory the file is in but this code does not do that. That makes a difference in search paths -- for example if there was a private/ directory in the folder the file is stored in, then run() would use the functions in the private/ folder, but the above code will not.
2 件のコメント
KALYAN ACHARJYA
2021 年 2 月 9 日
@Walter Roberson Sir i misunderstood the question, thanks for clarification!
Rik
2021 年 2 月 9 日
Just a note: as the default encoding for .m files is now UTF-8, using fileread might result in incorrect values of strings/chars.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Adding custom doc についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!