How to use path in a script in which another script is loaded?
Afficher commentaires plus anciens
So have a script1.m in which another script is loaded such like this: cd(fileparts(which(mfilename))); run('myload.m');
script1.m and myload.m is in the same folder. But what if I want to call script1.m from an other folder? I have to call it for example like this: run('../../scripts/script1.m');
But in this case at line run('myload.m'); script1 will find myload.m?
Réponses (1)
Add your folders to your path and save it. You don't need to cd in code to change directories when calling a function.
There is a 'set path' button in the home ribbon in Matlab, or you can do it programmatically with addpath if you really want.
Catégories
En savoir plus sur Develop Apps Using App Designer 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!