Can we add a variable inside the pause command?
3 views (last 30 days)
Show older comments
Can we add a variable inside the pause command? for example pause(wait(i))?
0 Comments
Accepted Answer
David Sanchez
on 14 Jan 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
0 Comments
More Answers (0)
See Also
Categories
Find more on Data Type Conversion in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!