Telling MATLAB to wait
111 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Zach
el 12 de Mayo de 2011
Comentada: Ghenam Dahmane
el 4 de Nov. de 2022
I'm doing a project and when I run my code, instead of MATLAB plotting the results after every time-step, it's only plotting the end result. I tried using the wait and timeout function but was unsuccessful. If anyone could help me put a 0.5 sec delay so MATLAB has the chance to plot that would be great!
0 comentarios
Respuesta aceptada
Matt Fig
el 12 de Mayo de 2011
Do you call PLOT after every time-step? After every time-step, call PLOT then cal DRAWNOW. You can also call PAUSE with a time-to-pause argument, but I doubt this is what you really want to do with your code.
Más respuestas (1)
Sean de Wolski
el 12 de Mayo de 2011
pause(0.5)
14 comentarios
Matt Tearle
el 13 de Mayo de 2011
Thanks, Jiro. I think you've just made a business case for me needing a new computer... :)
Ver también
Categorías
Más información sobre Matrix Indexing 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!