How to force matlab to save before exit?

5 visualizaciones (últimos 30 días)
ahmed shaaban
ahmed shaaban el 25 de Mayo de 2014
Comentada: ahmed shaaban el 27 de Mayo de 2014
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 comentarios
Jan
Jan el 25 de Mayo de 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 el 27 de Mayo de 2014
I mean that file in the editor .

Iniciar sesión para comentar.

Respuesta aceptada

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

Iniciar sesión para comentar.

Más respuestas (1)

Bjorn Gustavsson
Bjorn Gustavsson el 25 de Mayo de 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...)

Categorías

Más información sobre Environment and Settings en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by