How to stop for-loop outside of the loop?
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hello,
I have the below simple code.
It displays a counter of seconds.
How can I stop it with a command? NOT by pressing Ctrl+C?
I am not asking about the break command. Sometimes I want it to finish to count all the seconds, and sometimes I want to terminate it in the middle. For now I'm using Ctrl+C. I was wondering if there is a more elegant way.
THANK YOU!
for t = 1:timeDuration
disp(['Elapsed time ' num2str(t) ' seconds']);
pause(1);
end
1 commentaire
Stephen23
le 9 Oct 2019
"How can I stop it with a command? NOT by pressing Ctrl+C?"
"I was wondering if there is a more elegant way"
What you are requesting requires asynchronous code evaluation, which requires something like a timer object or a GUI or a suitable class. Which would you prefer?
Réponse acceptée
Daniel M
le 8 Oct 2019
Sounds like you want a GUI of a stop watch.
https://www.mathworks.com/matlabcentral/fileexchange/12628-stopwatch
6 commentaires
Daniel M
le 9 Oct 2019
Modifié(e) : Daniel M
le 9 Oct 2019
Read the documentation. If you want to start the GUI with the time already running, type stopwatch(clock).
If you want to start and stop the timer using keyboard commands, use the commands listed. You said you are currently using Ctrl+C, which means that you are clearing typing into the command window while your script is running.
If you want programmatic access to the functions inside the GUI, it's probably easier to just learn to use timer objects instead.
If you do NOT want to have to type into the command window, then you must have a programmatic way of knowing when to start and stop the timer. In this case, forget the GUI, program those conditions and use tic toc.
You're not being very precise in your language in what you want. If you want help, you need to properly phrase your issue.
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Loops and Conditional Statements dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!