How to use path in a script in which another script is loaded?

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?

Respuestas (1)

Adam
Adam el 31 de Mayo de 2016
Editada: Adam el 31 de Mayo de 2016
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.

Categorías

Más información sobre Develop Apps Using App Designer en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 31 de Mayo de 2016

Editada:

el 31 de Mayo de 2016

Community Treasure Hunt

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

Start Hunting!

Translated by