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
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
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
KALYAN ACHARJYA 2021-2-9
@Walter Roberson Sir i misunderstood the question, thanks for clarification!
Rik
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 CenterFile Exchange 中查找有关 Search Path 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by