Question to mkdir and addpath
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
MiauMiau
el 4 de Mzo. de 2014
Comentada: Image Analyst
el 4 de Mzo. de 2014
Hi
As I understand, the following code:
mkdir('c:/matlab/myfiles')
addpath('c:/matlab/myfiles')
First creates the folders in question, and in the second line makes it possible to call functions and the like from this folder (and all their subfolders and hence this is why it says the folders are added to the "top" of the search file?)
Unfortunately, I get the following warning (my script is called "test"):
Warning: Name is nonexistent or not a directory: c
> In path at 110
In addpath at 87
In test at 4
Warning: Name is nonexistent or not a directory: /matlab/myfiles
> In path at 110
In addpath at 87
In test at 4
What is that supposed to mean?
2 comentarios
Matt J
el 4 de Mzo. de 2014
Did you intend to attach your test script? It didn't make it.
Incidentally, ADDPATH will not add subfolders. You need GENPATH for that.
Respuesta aceptada
Image Analyst
el 4 de Mzo. de 2014
Try this
addpath(genpath('c:/matlab/myfiles'));
I do it all the time and it works great.
3 comentarios
Image Analyst
el 4 de Mzo. de 2014
Generally you only need to worry about it if you're running two versions of MATLAB at the same time, and even then, not always.
Más respuestas (0)
Ver también
Categorías
Más información sobre Search Path en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!