I want to find the overlap between this 2 cell arrays by comparing them row by row and get the overlapped rows:
ex1={'BRDT','TBP';'php','alm';'BRCA1','TP53'};
ex2={'TBP','HIST1H2BH';'RB1','TK2';'php','alm'};
desire_output={'php','alm'}
I have tried this command and get <2x1 cell>array, but i want <1x2 cell>(whole row) :
a=intersect(ex1,ex2,'stable');