How to force matlab to save before exit?

5 visualizzazioni (ultimi 30 giorni)
Hello all I am using matlab via server, so I quit MatLab several times before remembering to save. Is there is any way to fore MatLab to save the file code every several minutes. Or method to enforce MatLab to ask for save before quit .
  2 Commenti
Jan
Jan il 25 Mag 2014
What exactly is "the file code"? Do you mean the contents of the base workspace, the files opened in the editor or some specific files?
ahmed shaaban
ahmed shaaban il 27 Mag 2014
I mean that file in the editor .

Accedi per commentare.

Risposta accettata

Sean de Wolski
Sean de Wolski il 27 Mag 2014
Inside of your finish.m file, you can save the files using the editor api.
files = matlab.desktop.editor.getAll;
save(files)
  1 Commento
ahmed shaaban
ahmed shaaban il 27 Mag 2014
thanks a lot, it works very good. this saves all in my matlab editor.

Accedi per commentare.

Più risposte (1)

Bjorn Gustavsson
Bjorn Gustavsson il 25 Mag 2014
You should take a look at the help for quit and exit - there it is described that if you have a .m-file finish.m it will run before quiting - so in such a file you can have automatic save commands or something even more elaborate. You might also be interested in the diary function - I start every matlab session with:
diary(fullfile('/home','bjorn','MatlabRuns',[datestr(clock,30) '.txt']))
That way all my commandline activity is saved away. (Got this trick from someone else...)

Categorie

Scopri di più su Environment and Settings in Help Center e File Exchange

Tag

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by