How to avoid repetition in for loop that is using randi

조회 수: 3 (최근 30일)
Joel Schelander
Joel Schelander 2021년 4월 13일
댓글: Joel Schelander 2021년 4월 14일
I have the following loop where I fill IDCELL with different combinations of ID numbers. However, if a combination of ID numbers already exists, I want the loop to move on and try again. VID1, VID2 are two 3x3 cells.
for o=1:numel(INCREASE2)
for oz=1:999
index=randi([1,numel(VID1)]);
ID1 = VID1{index};
index2 = randi([1, numel(VID2)]);
ID2 = VID2{index2};
%ID1 and ID2 cannot be the same number
if numel(intersect(ID1,ID2))|| %some statement here
continue
else
IDCELL{o}={ID1; ID2};
break
end
end
end

채택된 답변

Alan Stevens
Alan Stevens 2021년 4월 13일
Does randperm do what you want?
help randperm

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

제품


릴리스

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by