Multiple combinations of a matrix
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Ulika Naidoo
il 24 Apr 2020
Commentato: Ulika Naidoo
il 25 Apr 2020
I have a matrix m, with 2 columns, M= [1, 2; 3, 4; 5, 6].
I need to the combinations of column one with its assocated column two entry.
For example:
x = [1, 2, 3, 4; 1, 2, 5, 6; 3, 4, 5, 6]
2 Commenti
Risposta accettata
Turlough Hughes
il 24 Apr 2020
Modificato: Turlough Hughes
il 25 Apr 2020
Try the following, it should work for any size of M.
function x = pairCombos(M)
numRows = size(M,1);
C = combnk(1:numRows,2); % Lists every pair combination of row indicies.
x = zeros(size(C,1),size(M,2)*2); % Preallocate space for variable x.
for i = 1:size(C,1)
x(i,:) = [M(C(i,1),:) M(C(i,2),:)]; % generate x as requested.
end
end
The final order depends the output from the combnk function. You might also consider using the sortrows function afterwards.
5 Commenti
Turlough Hughes
il 25 Apr 2020
What do you mean by take x and find combinations with m? Can you explain a bit more about what you're doing?
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Audio Processing Algorithm Design in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!