Dear R users, 
I have 2 matrices dim(16x5) below and i want to write an algorithm that check 
the 2 matrices if they are isomorphic ones (Isomorphic matrices: if I change 
the rows or/and columns or/and zeros into 1 and 1 into zeros in a row(s) or 
column(s) are the 2 matrices identical).
0    0    0    0    0
 1    0    1    0    1
 0    1    1    0    0
 1    1    0    0    1
 0    0    0    1    1
 1    0    1    1    0
 0    1    1    1    1
 1    1    0    1    0
 0    0    0    0    0
 1    0    1    0    1
 0    1    1    0    0
 1    1    0    0    1
 0    0    0    1    1
 1    0    1    1    0
 0    1    1    1    1
 1    1    0    1    0


 0    0    0    0    0
 1    0    1    0    0
 0    1    1    0    1
 1    1    0    0    1
 0    0    0    1    1
 1    0    1    1    1
 0    1    1    1    0
 1    1    0    1    0
 0    0    0    0    0
 1    0    1    0    1
 0    1    1    0    1
 1    1    0    0    0
 0    0    0    1    1
 1    0    1    1    0
 0    1    1    1    0
 1    1    0    1    1

        [[alternative HTML version deleted]]

______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to