How to determine number of common elements between two vectors?

10 views (last 30 days)
for example X = 1:10 Y = [5,7,13,25,45,56] So 5 and 7 are the common elements, and the answer should be 2.

Accepted Answer

Adam
Adam on 18 Sep 2015
numel( intersect( X, Y ) )

More Answers (0)

Community Treasure Hunt

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

Start Hunting!