How to save data when execution is paused

27 views (last 30 days)
Divij Gupta
Divij Gupta on 24 Jun 2021
Edited: Swetha Polemoni on 28 Jul 2021
I have a code runs a loop a million times. In each iteration, a new row of data is filled into a matrix. I want to find a way such that if I press the 'pasue' button (Matlab 2021), it saves the relevant variables so I can 'resume' the task by feeding that data back into a function.
Basically I am looking for a function I can put in the script that can detect when the pause button has been hit so it can save the data from RAM to a text file.

Answers (1)

Swetha Polemoni
Swetha Polemoni on 23 Jul 2021
Edited: Swetha Polemoni on 28 Jul 2021
Hi Divij Gupta
In Matlab, whenever a pause button is pressed all the workspace variables are updated according the latest run of the program. You can save these updated workspace variables in a mat file or txt file using save by executing this save command from command window without disturbing the execution of current program in pause mode.
You may find the following answer helpful.

Products


Release

R2021a

Community Treasure Hunt

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

Start Hunting!