How do I return only the rows of a matrix 'A' that not contain some values (These values are an array 'B')?
A = {'A1', 5 'P01,P02,P03,P04,P07';
'A2' 7, 'P07,P10';
'A3' 8, 'P07,P09';
'A4' 8, 'P10,P11'};
B = { 'P07'; 'P10'; 'P11'};
I need to return only:
'A1' ( P01,P02,P03,P04 not exist in B)
'A3' (P09 not exist in B)
Thanks in advance for your help