run a for loop for 240 minutes
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Allow a foor loop to be run for 240 minutes.
0 comentarios
Respuestas (1)
Bora Eryilmaz
el 14 de Dic. de 2022
Editada: Bora Eryilmaz
el 14 de Dic. de 2022
% Runs for 5 seconds (i.e., 5/60 minutes)
T = 5/60; % minutes
ti = datetime('now');
tf = datetime('now');
while (minutes(tf-ti) < T)
% Do stuff
% Update current time
tf = datetime('now');
end
seconds(tf-ti) % Should be the same as T (in seconds), or
minutes(tf-ti) % Should be the same as T (in minutes)
But you can't rely on this for precise timing.
2 comentarios
Bora Eryilmaz
el 19 de Dic. de 2022
You can use the tic/toc commands within the while loop:
tic
% Do stuff
elapsedTime = toc
Ver también
Categorías
Más información sobre Loops and Conditional Statements en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!