Run a loop every hour regardless of its calculation time!

8 visualizaciones (últimos 30 días)
Sonima
Sonima el 23 de Mzo. de 2019
Comentada: Bruno Luong el 16 de Ag. de 2019
Hi All
I want to run a look evey hour and do some math inside the loop.
one solusion is to use tic/toc to get the math time and deduce it from the pause time, but I find it not efficient.
Any solusion to this?
Thanks.
  1 comentario
Stephen23
Stephen23 el 16 de Ag. de 2019
Editada: Stephen23 el 16 de Ag. de 2019
Using tic / toc in a while loop is not very efficient.
Much better to use a timer object.

Iniciar sesión para comentar.

Respuesta aceptada

KALYAN ACHARJYA
KALYAN ACHARJYA el 23 de Mzo. de 2019
Editada: KALYAN ACHARJYA el 23 de Mzo. de 2019
while true
tic
% some math here
elapsedTime=toc
pause(3600+elapsedTime);
clearvars elapsedTime;
end
% Please note on while loop to avoid infinite run
  3 comentarios
Walter Roberson
Walter Roberson el 15 de Ag. de 2019
I would expect 3600-elapsedTime not 3600+elapsedTime
Bruno Luong
Bruno Luong el 16 de Ag. de 2019
Use timer is much better. I think PAUSE will lock completely 99% of MATLAB.

Iniciar sesión para comentar.

Más respuestas (1)

Walter Roberson
Walter Roberson el 15 de Ag. de 2019

Categorías

Más información sobre Programming 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