automatic Matlab to run each 10 min

6 次查看(过去 30 天)
Niki
Niki 2013-7-19
Dear,
I would like to ask matlab to perform the same calculation each 10 minute for example. do you know how to do so? for example,
each 10 minute, Load a marix , then perform a fucntion, then save the time and result
  2 个评论
Daniel Shub
Daniel Shub 2013-7-19
Do you want MATLAB to be open the whole time? If not, what OS are you using? How exact do you need the timing to be? How long does the calculation take? What should happen if there are errors?
Niki
Niki 2013-7-19
Yes, I want it to be open for all the time lets say I want it start to load each 10 minute , do the calculation and then save it , then again over and over There will not be any error

请先登录,再进行评论。

回答(2 个)

Sean de Wolski
Sean de Wolski 2013-7-19
doc timer
From within MATLAB if you want to use the same session.

Daniel Shub
Daniel Shub 2013-7-19
You could do
while true
myfunc;
pause(10*60);
end

类别

Help CenterFile Exchange 中查找有关 Startup and Shutdown 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by