Info
この質問は閉じられています。 編集または回答するには再度開いてください。
Generating row combination from a set of data
2 ビュー (過去 30 日間)
古いコメントを表示
Lets say i have 37 filters and their transmittance in a (37 x 25) matrix
In this set of 37 filters i like to randomly pick 3 filters out everytime, no repetition. So it's like 37 choose 3, there should be a total of 7770 combinations.
Can I form a 3D matrix using a for loop for this? where it should be (3 x 25 x 7770)
Where 3 is the set of filters for each combinations 25 is the data points as per original and 7770 is the total combinations
0 件のコメント
回答 (1 件)
Shoaibur Rahman
2015 年 1 月 11 日
編集済み: Shoaibur Rahman
2015 年 1 月 11 日
T = rand(37,25);
fil = 1:37;
b = combntns(fil,3);
for k = 1:size(b,1)
out(:,:,k) = T(b(k,:),:);
end
0 件のコメント
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!