Event-based script without any infinite loop
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Alex Alex
el 31 de Jul. de 2021
Comentada: Alex Alex
el 26 de Ag. de 2021
Hello! is it possible to create an event and listeners based script (without GUI) that doesn't contain any infinite loops? If yes, how can I do this? Thank you.
0 comentarios
Respuesta aceptada
Chunru
el 31 de Jul. de 2021
doc timer. Here is an example to display a message every 3sec for 3 times:
t = timer;
t.StartDelay = 3;
t.TimerFcn = @(myTimerObj, thisEvent)disp('3 seconds have elapsed');
t.Period = 2;
t.TasksToExecute = 3;
t.ExecutionMode = 'fixedRate';
start(t)
Más respuestas (0)
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!