Info

Questa domanda è chiusa. Riaprila per modificarla o per rispondere.

Generating row combination from a set of data

1 visualizzazione (ultimi 30 giorni)
hithere
hithere il 11 Gen 2015
Chiuso: MATLAB Answer Bot il 20 Ago 2021
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

Risposte (1)

Shoaibur Rahman
Shoaibur Rahman il 11 Gen 2015
Modificato: Shoaibur Rahman il 11 Gen 2015
T = rand(37,25);
fil = 1:37;
b = combntns(fil,3);
for k = 1:size(b,1)
out(:,:,k) = T(b(k,:),:);
end

Community Treasure Hunt

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

Start Hunting!

Translated by