How can I setup MATLAB to differentiate things like recent directories and command histories for two unrelated projects?
Mostrar comentarios más antiguos
I work on two separate and unrelated projects and I have separate directory locations I frequent, separate desired paths, and separate programs and commands I run for each one. Is there a way to have two different "personalities" within MATLAB to work on one project versus the other? I previously had two separate versions of MATLAB loaded on my computer and would use one version for Project A and one for Project B. I now only have one version and am wondering if I can recreate the separateness of things like paths and command histories. Thanks!
Respuesta aceptada
Más respuestas (1)
Joseph Cheng
el 3 de Jun. de 2015
Editada: Joseph Cheng
el 3 de Jun. de 2015
0 votos
just setup a script to run depending on the project you are working on in your root matlab directory. One for Project A and one for Project B. In each script use the function addpath()/path() to add your paths and cd() to navigate to the location of the project. I forget which one is temporary such that the next time you start up matlab it resets. In these scripts you can also call functions located in the file exchange which will save and load command histories. So perhaps 2 scripts can be run.
to recap project startup script:
- add paths to matlab search paths
- load command history from file X (if no file then keep current history)
- navigate current directory to project path.
then another script to be called:
- remove paths added in project startup script
- save current command history into file X.
- navigate to default matlab folder?
the 2nd script could be used in the event you don't want to close matlab down and reset it to the default to start the other project.
1 comentario
Scott Francis
el 4 de Jun. de 2015
Categorías
Más información sobre Startup and Shutdown en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!