Borrar filtros
Borrar filtros

Column-wise AND operation in all column combinations of two matrices

10 visualizaciones (últimos 30 días)
Given matrix a of size MxN and matrix b of size MxL I want to get a matrix C of size M x(N*L) which contains the column-wise logical operation AND of all combinations of columns of matrix a and matrix b.
a = [1 0 0
1 0 0
1 0 0
1 0 0
0 1 0
0 1 0
0 1 0
0 1 0
0 0 1
0 0 1
0 0 1
0 0 1];
b= [0 0 1
0 1 0
1 0 0
0 0 1
0 1 0
1 0 0
0 0 1
0 1 0
1 0 0
0 0 1
0 1 0
1 0 0];
C=[];
for ii=1:size(a, 2)
for jj=1:size(b, 2)
C = [C b(:,jj) & a(:,ii)];
end
end
I am searching for an alternative syntax of the above loops. Thank you!
  1 comentario
Jos (10584)
Jos (10584) el 24 de Feb. de 2014
A matrix of size MxN, means M rows and N columns, rather than the other way around ...

Iniciar sesión para comentar.

Respuesta aceptada

Iain
Iain el 24 de Feb. de 2014
This should do it:
C = bsxfun(@and, a, reshape(b,[12,1,3]);
theresult = C(down,column_a,column_b);

Más respuestas (3)

Azzi Abdelmalek
Azzi Abdelmalek el 24 de Feb. de 2014
out=reshape(repmat(a,size(b,2),1),size(a,1),[]) & repmat(b,1,size(a,2))

Jos (10584)
Jos (10584) el 24 de Feb. de 2014
% Small example: two logical arrays
A = rand(3,3) > .25
B = rand(2,3) > .25
% general engine
[ib,ia] = ndgrid(1:size(B,1), 1:size(A,1))
C = A(ia(:),:) & B(ib(:),:)

Giorgos Papakonstantinou
Giorgos Papakonstantinou el 24 de Feb. de 2014
Thank you all for your replies!!

Categorías

Más información sobre Descriptive Statistics en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by