How to set WaitSecs for several durations?
3 views (last 30 days)
Show older comments
Takara Sumoto
on 20 Oct 2020
Commented: Ameer Hamza
on 20 Oct 2020
I would like to set WaitSecs for several duration such as 1.0s, 1.5s, and 2.0, and randomize them.
How should I write a code?
rs = randperm(3);
WaitSecs(?);
0 Comments
Accepted Answer
Ameer Hamza
on 20 Oct 2020
Try this
rs = [1.0 1.5 2.0];
idx = randi(numel(rs));
WaitSecs(rs(idx))
2 Comments
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!