Running script from command line changes working directory to script's directory
Afficher commentaires plus anciens
Dear all,
I have a problem keeping the working directory when running a script from command line. I have a script saved in my Matlab script directory, and I call it with
matlab -nodisplay -nodesktop -r "run('/path/to/Matlab/scripts/folder/the_script.m')"
The script is supposed to work on some files in the current directory, but when I call it from within the directory, it cannot find the files because Matlab's working directory changes to where the script is. How can avoid that without changing directory back to my working directory implicitly in the script?
2 commentaires
Fangjun Jiang
le 30 Avr 2018
The behavior you observed is caused by run(). You can see "help run" to find the description.
-r option means to execute a statement, a function or a script. You could use below, without full folder specification if it is in the MATLAB path.
matlab -nodisplay -nodesktop -r the_script
Réponses (1)
Fangjun Jiang
le 30 Avr 2018
0 votes
In this case, I would suggest adding your MATLAB script directory into MATLAB path.
1 commentaire
Renat
le 30 Avr 2018
Catégories
En savoir plus sur Search Path dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!