Clear Filters
Clear Filters

get common rows from 2 matrices

9 views (last 30 days)
i have two matrices of different sizes,
A = [450,37;477,38;464,39;450,40;493,40]
B = [461,37;477,38;450,40;483,39]
i wanted to get a new matrix C, which contains the common rows in A and B
C = [477,38;450,40]

Accepted Answer

Andrei Bobrov
Andrei Bobrov on 16 Nov 2017
C = intersect(A,B,'rows')

More Answers (0)

Categories

Find more on Data Types in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!