MATLAB: How to determine number of common elements between two vectors

elementsamevector

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.

Best Answer

numel( intersect( X, Y ) )