reduce rows of a due to b
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
JL
el 30 de Ag. de 2019
Respondida: Jos (10584)
el 30 de Ag. de 2019
Hi everyone, I have 2 matices, A and B
a = [0 1 0
0 1 1
1 0 1
1 1 1];
b =[1 1 1
0 1 1];
Is it possible to reduce a using b?
2 comentarios
Respuesta aceptada
madhan ravi
el 30 de Ag. de 2019
ix = ismember(a,b,'rows');
a(ix,:) % gives you the rows in a which is common to b and ~ix vice versa
3 comentarios
Más respuestas (1)
Jos (10584)
el 30 de Ag. de 2019
You can simply use setdiff with the rows option ...
c = setdiff(a,b,'rows')
0 comentarios
Ver también
Categorías
Más información sobre Environment and Settings 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!