Combinations of different rows of a matrix
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Jess
el 19 de Jun. de 2019
Respondida: Stephen23
el 20 de Jun. de 2019
I have a 90x2 matrix. I have to generate all combinations of 2 rows of the matrix. How can I do it?
Plz help
0 comentarios
Respuesta aceptada
Stephen23
el 20 de Jun. de 2019
Simpler using basic MATLAB indexing:
>> M = [1,5;6,2;5,6;7,5;9,0]
M =
1 5
6 2
5 6
7 5
9 0
>> X = nchoosek(1:size(M,1),2);
>> R = [M(X(:,1),:),M(X(:,2),:)]
R =
1 5 6 2
1 5 5 6
1 5 7 5
1 5 9 0
6 2 5 6
6 2 7 5
6 2 9 0
5 6 7 5
5 6 9 0
7 5 9 0
0 comentarios
Más respuestas (1)
Alex Mcaulley
el 19 de Jun. de 2019
A = rand(90,2); %Example
b = nchoosek(1:size(A,1),2);
res = reshape(cell2mat(arrayfun(@(i) A(b(i,:),:),1:size(b,1),'uni',0)),2,size(A,2),[]);
4 comentarios
Ver también
Categorías
Más información sobre Matrix Indexing en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!