Auto save file in running GUI

조회 수: 2 (최근 30일)
Cristian Martin
Cristian Martin 2022년 5월 26일
댓글: Voss 2022년 5월 28일
Hi,
I have a GUI that runs more then 5-6 hours
There's a command for this script to be executed every 'x' minutes ? I want to save file every 30 min for example. Actually that script is from a push button
tableData = get(handles.uitable1, 'data');
tableData = cell2table(tableData);
filename = sprintf('%s.csv', datestr(now, 'dd.mm.yyyy.HHMM'));
writetable(tableData,filename);

채택된 답변

Voss
Voss 2022년 5월 28일
Maybe you can use a timer for this. (https://www.mathworks.com/help/matlab/ref/timer.html)
You could create the timer in the OpeningFcn:
handles.save_timer = timer( ...
'ExecutionMode','fixedRate', ...
'Period',1800, ... % 30 min = 1800 s
'TimerFcn',{@cb_save_table,handles.figure1}); % <- pass the figure to the TimerFcn
Start the timer when the process that takes > 5-6 hours starts (that might be when the GUI starts (OpeningFcn) or it might be in a Callback in the GUI):
start(handles.save_timer);
And define the TimerFcn of the timer to be the callback you posted, which saves the table data to file:
function cb_save_table(src,evt,fig)
handles = guidata(fig);
writetable( ...
cell2table(get(handles.uitable1, 'data')), ...
sprintf('%s.csv', datestr(now, 'dd.mm.yyyy.HHMM')));
end
  댓글 수: 2
Cristian Martin
Cristian Martin 2022년 5월 28일
Thank you for the answer!
Voss
Voss 2022년 5월 28일
You're welcome!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Environment and Settings에 대해 자세히 알아보기

제품


릴리스

R2015a

Community Treasure Hunt

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

Start Hunting!

Translated by