Loop with Fixed time

How can I make the loop with fixed time?
For example:
for i=1:5
 somecode;
end
I want to make every calculation time of the loop is about 1 sec And the total calculation time is about 5 sec

 Respuesta aceptada

Azzi Abdelmalek
Azzi Abdelmalek el 3 de Feb. de 2013

2 votos

for i=1:5
%somecode;
pause(1-tw) % tw is your computing time
end
%to find your computing time use tic and toc

2 comentarios

Jen-Yu Hsiao
Jen-Yu Hsiao el 5 de Mzo. de 2013
TKS~!!
Jan
Jan el 5 de Mzo. de 2013
Editada: Jan el 5 de Mzo. de 2013
The Java sleep() timer is more accurate: see http://undocumentedmatlab.com/blog/pause-for-the-better/. A timer might be even more precise.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by