Can we add a variable inside the pause command?

2 visualizaciones (últimos 30 días)
Ali
Ali el 14 de En. de 2015
Respondida: David Sanchez el 14 de En. de 2015
Can we add a variable inside the pause command? for example pause(wait(i))?

Respuesta aceptada

David Sanchez
David Sanchez el 14 de En. de 2015
If you read the documentation
doc pause
you will see that you can add a variable inside the pause command.
One example:
w = 1;
for k=1:2
pause(w) % pause one second before executing next sentence
disp(i)
end

Más respuestas (0)

Categorías

Más información sobre Graphics Object Programming en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by