How can I setup MATLAB to differentiate things like recent directories and command histories for two unrelated projects?
Mostra commenti meno recenti
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!
Risposta accettata
Più risposte (1)
Joseph Cheng
il 3 Giu 2015
Modificato: Joseph Cheng
il 3 Giu 2015
0 voti
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 Commento
Scott Francis
il 4 Giu 2015
Categorie
Scopri di più su Startup and Shutdown in Centro assistenza e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!