finding mismatched elements ~ismember

2 Ansichten (letzte 30 Tage)
Lalit Patil
Lalit Patil am 25 Dez. 2012
A = [1 2 3;2 3 4;3 4 5;4 5 6;5 6 7;6 7 8;7 8 9]
B = [2 3 4;6 7 8]
flag = ~ismember(A,B,'rows');
index = find(flag);
q = A(index(flag))
The error is
??? Index exceeds matrix dimensions.
and The index finds only first elements of each row. The remaining two should also find it.. So, how to do it.?
  2 Kommentare
Matt J
Matt J am 25 Dez. 2012
The index finds only first elements of each row. The remaining two should also find it.
This is not clear. Write explicitly what you want "index" and "q" to be.
Andrei Bobrov
Andrei Bobrov am 25 Dez. 2012
q = A(flag,:);
or
q = A(index,:);

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Matt J
Matt J am 25 Dez. 2012
q = setdiff(A,B,'rows')

Weitere Antworten (1)

Walter Roberson
Walter Roberson am 25 Dez. 2012
Are these integers or numbers with fractions? If they are numbers with fractions then you cannot use ismember() in most cases.

Kategorien

Mehr zu Matrix Indexing finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by