Sorting and randomising a matrix according to a particular constraint.
이전 댓글 표시
Hi There,
I have a 32 x 3 matrix as follows:
A =
[ 1 1 1;
1 1 2;
1 1 3;
1 1 4;
1 1 5;
1 1 6;
1 1 7;
1 1 8;
1 2 1;
1 2 2;
1 2 3;
1 2 4;
1 2 5;
1 2 6;
1 2 7;
1 2 8;
2 1 1;
2 1 2;
2 1 3;
2 1 4;
2 1 5;
2 1 6;
2 1 7;
2 1 8;
2 2 1;
2 2 2;
2 2 3;
2 2 4;
2 2 5;
2 2 6;
2 2 7;
2 2 8]
What I need to do is randomise the order of the rows, while keeping the row values together, however, this needs to be constrained such that for A(:, 4), every 8 rows contain only the numbers 1 - 8. So for example, you could have something like:
A(1:8, :) =
[ 1 2 4;
1 1 5;
2 1 6;
1 1 8;
2 2 1;
2 1 2;
2 1 7;
1 1 3]
The occurrence of 1 and 2 in the first two columns needs to be random, 1 - 8 needs to be randomised for every 8 values of the third column. Initially I tried to use the function randswap within a loop with an added constraint, but this has only led to an infinite loop. Also important that the rows stay together as the 1s and 2s in the first two columns need to appear alongside the last column an equal number of times. Pretty stumped. Any help much appreciated.
채택된 답변
추가 답변 (2개)
Andrei Bobrov
2012년 2월 28일
variant
m = size(A,1);
n = 1:8;
out = [1 1 1];
i2 = 1;
while ~all(ismember(n,out(:,3))) && i2 < 100
i1 = randperm(m);
out = A(i1(n),:);
i2 = i2 + 1;
end
more variant
eg
A =[ 1 1 1
1 1 2
1 1 3
1 1 4
1 1 6
1 1 8
1 2 1
1 2 3
1 2 6
1 2 8
2 1 2
2 1 3
2 1 4
2 1 5
2 1 7
2 1 8
2 2 2
2 2 3
2 2 5
2 2 6
2 2 7
2 2 8]
[i1,i1] = sort(A(:,3));
k = mat2cell(A(i1,:),histc(A(:,3),unique(A(:,3))),size(A,2));
out = cell2mat(arrayfun(...
@(i3)k{i3}(randi(size(k{i3},1)),:),randperm(numel(k))','un',0))
more variant for your case
A1 = sortrows(A,3);
out = A1(4*(randperm(8)-1)+randi(4,1,8),:)
last variant
d = rand(8,4);
[~,i1] = sort(d(:,1),1);
[~,i2] = sort(d,2);
A1 = sortrows(A,3);
out = A1(4*(i1-1)+i2(:,1),:)
Lauren Shone
2012년 2월 29일
카테고리
도움말 센터 및 File Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!