Borrar filtros
Borrar filtros

permutations and combinations of column

1 visualización (últimos 30 días)
Jen-Yu Hsiao
Jen-Yu Hsiao el 10 de Sept. de 2012
If there are two matrices
A=[1 2 3 4];
B=[5 6 7 8];
How can I create this
C=[ 1 2 3 4;
1 2 3 8;
1 2 7 4;
1 2 7 8;
1 6 3 4;
1 6 3 8;
1 6 7 4;
1 6 7 8;
5 2 3 4;
5 2 3 8;
5 2 7 4;
5 2 7 8;
5 6 3 4;
5 6 3 8;
5 6 7 4;
5 6 7 8]

Respuestas (2)

Sean de Wolski
Sean de Wolski el 10 de Sept. de 2012
A=[1 2 3 4];
B=[5 6 7 8];
AB = [A;B];
idx = fullfact([2 2 2 2]);
C = AB(sub2ind([2 4],idx,repmat(1:4,size(idx,1),1)))
This won't be sorted. You could presort idx so that it is:
idx = sortrows(idx,1:4)
  2 comentarios
Azzi Abdelmalek
Azzi Abdelmalek el 10 de Sept. de 2012
result=C(idx)
Sean de Wolski
Sean de Wolski el 11 de Sept. de 2012
@Azzi: That won't work because idx is only referencing the row in AB. We need the column information also. Of course, if speed is the primary goal, a for-loop will smoke sub2ind() and day of the week...

Iniciar sesión para comentar.


Azzi Abdelmalek
Azzi Abdelmalek el 10 de Sept. de 2012
Editada: Azzi Abdelmalek el 10 de Sept. de 2012
A=[1 2 3 4];B=[5 6 7 8];
C=[];n=length(A);
for k=1:n
un=ones(2^(n-k),1);
C=[C repmat([A(k)*un; B(k)*un],2^(k-1),1)];
end

Categorías

Más información sobre Matrices and Arrays 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!

Translated by