Setdiff n intersect question
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Neesha
el 21 de Ag. de 2014
Comentada: Neesha
el 22 de Ag. de 2014
Hi,
I have two dataset.
1)
- Shop# - floor#
- 321 - 4
- 321 - 2
- 321 - 3
- 322 - 0
- 322 - 2
2)
- shop# - floor#
- 322 - 1
- 322 - 0
- 322 - 2
if i do intersect of those two, i expect following, but i get just first row. WHy? 3)
- shop# - floor#
- 322 - 0
- 322 - 2
0 comentarios
Respuesta aceptada
Guillaume
el 21 de Ag. de 2014
>> a=[321 4;321 2;321 3;322 0;322 2];
>> b=[322 1;322 0;322 2];
>> intersect(a, b, 'rows')
ans =
322 0
322 2
8 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Logical 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!