Random shuffling while reduce the identical pairs

조회 수: 1 (최근 30일)
J T
J T 2020년 3월 3일
댓글: Walter Roberson 2020년 3월 3일
Hello,
I have a 50-by-1 array like this:
P = [4 5 5 5 5 5 5 5 5 9 9 9 9 9 9 9 27 27 27 35 40 40 40 40 4 5 5 5 5 5 5 5 5 5 9 9 9 9 9 9 27 27 27 35 35 40 40 40 27 9]';
P should be split into two 25-by-1 arrays A and B after shuffling, and, I want to efficiently shuffle P such that the two children arrays, A and B, consider pairing A(i) and B(i) for i = 1:25, there is the least amout of A(i) == B(i).
Could someone help me out here? Thank you very much!

채택된 답변

Walter Roberson
Walter Roberson 2020년 3월 3일
tries = 1000;
NB = length(B);
[~,perms] = sort(rand(tries, NB),2);
matchcounts = sum(A == B(perms),2);
bestidx = find(matchcounts == min(matchcounts));
best_shuffles = B(perms(bestidx,:));
You could also sort on matchcounts and take however many that you need.
In my test, I got 11 permutations with only a single match each.
  댓글 수: 3
Image Analyst
Image Analyst 2020년 3월 3일
Why do you want to do this? What is the use case?
Walter Roberson
Walter Roberson 2020년 3월 3일
sP = sort(P(:).');
A = sP(1:end/2);
B = sp(end/2+1:end);
tries = 1000;
NB = length(B);
[~,perms] = sort(rand(tries, NB),2);
matchcounts = sum(A == B(perms),2);
bestidx = find(matchcounts == min(matchcounts));
best_shuffles = B(perms(bestidx,:));
61 entries with overlap 0 in my test.
The above algorithm is not fool-proof. A better algorithm would be to select the value that occurs most often and put all of the copies of it into A, and then to select the second most common value and put all the copies into B, then put all copies of the third most common into A, and so on back and forth, partitioning into non-overlapping sets as much as possible. Ideally you would get A and B that had no overlapping values, in which case every permutation of B would be a total mismatch with every permutation of A.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기

제품


릴리스

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by