how to generate combination through specific matrix dimension?
1 回表示 (過去 30 日間)
古いコメントを表示
I have a matrix (128, 128, 20, 8) the 4th diminution is 4 pairs; how can I generate a combination of that 4th diminution as 4-pairs by picking 2 each time?
2 件のコメント
James Tursa
2018 年 2 月 22 日
Your question is not clear. Is this an indexing question, or a random selection question, or ...? Please provide a short example clearly showing desired output.
回答 (2 件)
Roger Stafford
2018 年 2 月 23 日
As James has stated, your question is not clear. I'm going to make a very wild guess as to your meaning. If it is wrong, as is likely, perhaps the method I show will give you some ideas of how you can achieve what you actually want.
Let your original 128x128x20x8 matrix be called A. Let the matrix you want to create be called B. I will suppose that your pairings in the 4th dimension of A are 1 and 2, 3 and 4, 5 and 6, 7 and 8. You then want to take all possible combinations of two pairs out of these four: 1,2,3,4 then 1,2,5,6 then 1,2,7,8, then 3,4,5,6 and so forth. This will give you a size of 4*6 = 24 at the fourth dimension.
C = nchoosek(1:2:7,2); % Choose 2 out of 4
n = size(C,1); % n = 4!/2!/2! = 6 in this case
B = repmat(zeros(size(A)),1,1,1,n/2); % B will have size 8*6/2=24 at 4th dimension
for ix = 1:n
B(:,:,:,4*ix-3:4*ix) = A(:,:,:,[C(ix,1),C(ix,1)+1,C(ix,2),C(ix,2)+1]);
end
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!