How to set WaitSecs for several durations?

조회 수: 7 (최근 30일)
Takara Sumoto
Takara Sumoto 2020년 10월 20일
댓글: Ameer Hamza 2020년 10월 20일
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(?);

채택된 답변

Ameer Hamza
Ameer Hamza 2020년 10월 20일
Try this
rs = [1.0 1.5 2.0];
idx = randi(numel(rs));
WaitSecs(rs(idx))
  댓글 수: 2
Takara Sumoto
Takara Sumoto 2020년 10월 20일
Thank you, it worked!
Ameer Hamza
Ameer Hamza 2020년 10월 20일
I am glad to be of help!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Multidimensional Arrays에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by