How to avoid repetition in for loop that is using randi

2 visualizaciones (últimos 30 días)
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

Respuesta aceptada

Alan Stevens
Alan Stevens el 13 de Abr. de 2021
Does randperm do what you want?
help randperm

Más respuestas (0)

Categorías

Más información sobre Loops and Conditional Statements en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by