Slow Matlab startup if startup.m contains many path additions
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I am asking/answering my own question, hoping it will help someone with the same issue:
If Matlab takes 3+ minutes to start up, how can I speed it up? My startup.m file contains many calls to add directories to my path, and those directories reside on a network drive. For example:
path(path, 'S:\top_code_directory\some_subdirectory') ; % Many calls like this
path(path, genpath('S:\project_directories')) ; % Many subdirectories are added
1 comentario
Respuesta aceptada
Richard Crozier
el 4 de Oct. de 2012
Editada: Richard Crozier
el 4 de Oct. de 2012
build the path yourself and do a single call to addpath, addpath expects a single string containing path names separated by semicolons. So try something like the following:
apath = 'S:\top_code_directory\some_subdirectory;'
newpath = [genpath('S:\project_directories'), apath];
addpath(newpath);
Obviously your construction of the path string to add will be more complex. Just remember that genpath already produces a string ending in a semicolon so you don't need to add one to the string produced by it.
You will find this much faster, as the bottleneck is the function path.m
Más respuestas (1)
K E
el 3 de Jul. de 2012
Editada: K E
el 3 de Jul. de 2012
3 comentarios
Robert Cumming
el 4 de Oct. de 2012
By doing it this way every user of your machine will also have all your paths added. Be careful as you may not want this...
Richard Crozier
el 4 de Oct. de 2012
No, only users who have access to my startup directory which is only accessible to me, so they have to also be logged in as me. Valid point for others though. I've discovered the real answer to the problem anyway which I have posted below.
Ver también
Categorías
Más información sobre Startup and Shutdown en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!