MATLAB: How to intersect between two cell array

cell arraysMATLAB

>> SI
SI =
1×2 cell array
[1×2 double] [1×2 double]
>> U=SI{1}
U =
1 2

Best Answer

intersect(SI{1},SI{2})