How to set WaitSecs for several durations?

5 Ansichten (letzte 30 Tage)
Takara Sumoto
Takara Sumoto am 20 Okt. 2020
Kommentiert: Ameer Hamza am 20 Okt. 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(?);

Akzeptierte Antwort

Ameer Hamza
Ameer Hamza am 20 Okt. 2020
Try this
rs = [1.0 1.5 2.0];
idx = randi(numel(rs));
WaitSecs(rs(idx))
  2 Kommentare
Takara Sumoto
Takara Sumoto am 20 Okt. 2020
Thank you, it worked!
Ameer Hamza
Ameer Hamza am 20 Okt. 2020
I am glad to be of help!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Multidimensional Arrays finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by