Choose pairs of integers without repeating this selection in a loop
Show older comments
Hi. I want select randomly two number by 'randsample' or 'randperm' function in a loop (for intermediate recombination in evolutionary strategy matlab code). But I want any pair of numbers can be selected only once. For example if selected [1 2], in next time [1 2] or [2 1] are not selected. please help me. Thanks
Accepted Answer
More Answers (1)
Geoff Hayes
on 28 Apr 2014
Hi Ehsan,
One option is to keep track of a list of all the possible choices for your recombination, randomly select a pair of indices into that list, remove those two from your list of choices and then repeat for the next random selection (the two that you removed previously will no longer be in the list to choose from):
N = 26; % the max number of choices
recomChoices = 1:N; % the vector of choices
rndPairIndcs = randperm(length(recomChoices),2); % the randomly chosen indices for recombination
rndPair = recomChoices(rndPairIndcs); % the numbers/ids for recombination (i.e. 1,2)
recomChoices(rndPairIndcs) = []; % remove that pair from the list
Hope that this helps!
Geoff
Categories
Find more on Direct Search in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!