From: joseph Frank on
Hi,

I have matrix "A "and Matrix" B" where all the rows of" B "are in A. there are 200 columns in each of the matrices. I want to find which rows of "A" are not in "B". Is there a simple function to extract the unmatched rows?
Regards
From: dpb on
joseph Frank wrote:
> Hi,
>
> I have matrix "A "and Matrix" B" where all the rows of" B "are in A.
> there are 200 columns in each of the matrices. I want to find which rows
> of "A" are not in "B". Is there a simple function to extract the
> unmatched rows?
> Regards

~ismember() % should do the trick...probably want 'rows' option

--