can we run codes from 2nd line onwards?

1 visualización (últimos 30 días)
Megha
Megha el 9 de Feb. de 2021
Comentada: Rik el 9 de Feb. de 2021
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 comentario
Stephen23
Stephen23 el 9 de Feb. de 2021
"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.

Iniciar sesión para comentar.

Respuesta aceptada

Walter Roberson
Walter Roberson el 9 de Feb. de 2021
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 comentarios
KALYAN ACHARJYA
KALYAN ACHARJYA el 9 de Feb. de 2021
@Walter Roberson Sir i misunderstood the question, thanks for clarification!
Rik
Rik el 9 de Feb. de 2021
Just a note: as the default encoding for .m files is now UTF-8, using fileread might result in incorrect values of strings/chars.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Search Path en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by