Effacer les filtres
Effacer les filtres

Setdiff n intersect question

2 vues (au cours des 30 derniers jours)
Neesha
Neesha le 21 Août 2014
Commenté : Neesha le 22 Août 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

Réponse acceptée

Guillaume
Guillaume le 21 Août 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 commentaires
Matt J
Matt J le 22 Août 2014
@Neesha, if you got it work, you should accept Guillaume's answer
Neesha
Neesha le 22 Août 2014
i accepted it, but i did not end up using 'rows', it worked without it as problem was coming from somewhere else

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Logical dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by