How to find the Union of two matrices with the same column size?

2 Ansichten (letzte 30 Tage)
I have two matrices of different sizes: say A(n,2) and B(m,2). How to find the "Union" or "Intersection" of these two matrices?
*Hope the result will be: C(k,2)= A ⋃ B .....and D(p,2) =A ∩ B
**Thanks so much,

Akzeptierte Antwort

Ryan Klots
Ryan Klots am 19 Aug. 2017
It looks like the union and intersect functions might come in handy here.
Try
C = union(A, B, 'rows');
D = intersect(A, B, 'rows');

Weitere Antworten (0)

Kategorien

Mehr zu 線形代数 finden Sie in Help Center und File Exchange

Tags

Noch keine Tags eingegeben.

Community Treasure Hunt

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

Start Hunting!