MATLAB: Compare the rows of an array with another one’s array

array

Hi all,
I have an Array A with dimensions [3500 x 5]
And a second array B with dimensions [13×5]
How can I check every row of array A to see if it is the same with any row of B? (practically crosscheck every row of array A with ALL rows of array B)!
is there any easy way to do it?
thanks a lot
Nikolas

Best Answer

Lia = ismember(A,B,'rows')