How can I generate random number between 1 and 10, and at the same time I want to exclude number 3 & 6?

조회 수: 27 (최근 30일)
How can I generate random number between 1 and 10, and at the same time I want to exclude number 3 & 6 using M-file?
  댓글 수: 3
Mohd Helmi Mansor
Mohd Helmi Mansor 2019년 3월 21일
I want to have one single number from the randomization process (Between 1 & 10). But the number must not be 3 & 6. So it can be either 1,2,4,5,7,8,9 or 10.
Guillaume
Guillaume 2019년 3월 21일
Why not generate a number between 1 and 10 and if it's 3 or 6 retry? Seems simple enough.

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

채택된 답변

Thorsten
Thorsten 2019년 3월 21일
x = setdiff(1:10, [3, 6]);
r = x(randi(numel(x)));

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by