Matlab directory; keeping addpath compatible between my linux and windows
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Moritz
el 19 de Feb. de 2014
Respondida: Jos (10584)
el 19 de Feb. de 2014
Hi Folks,
i am storing my tools from Filexchange in z.B /home/moritz/matlab/tools and D:\moritz\matlab\tools
does anyone know how to write the addpath line in functions or skripts so that i would not have to change this line everytime i skip to my laptop ?
A try catch phrase would probably work.
Best regards
Moritz
0 comentarios
Respuesta aceptada
Jos (10584)
el 19 de Feb. de 2014
if ispc
disp('I am sorry for you ;-)') ;
addpath ('d:\moritz\matlab\tools')
else
addpath('/home/ … ')
end
Also see ISUNIX, ISMAC. In addition, the function FULLFILE might also be interesting to you.
0 comentarios
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!