Multiple combinations of a matrix
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Ulika Naidoo
am 24 Apr. 2020
Kommentiert: Ulika Naidoo
am 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 Kommentare
Akzeptierte Antwort
Turlough Hughes
am 24 Apr. 2020
Bearbeitet: Turlough Hughes
am 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 Kommentare
Turlough Hughes
am 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?
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Audio Processing Algorithm Design finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!