Hi all R users,
I want to create a matrix having n columns and 2^n rows, and all its entries
are only 0 or 1. In each row, column i is 0 means dimension i is chosen, 0
means not.  The matrix will contains all the possible combination of those n
dimensions.

Here is an example, if n = 3, the matrix will look like:
0 0 0
0 0 1
0 1 0
1 0 0
0 1 1
1 0 1
1 1 1


I know I can use n "for" loops to do this, but is there a better way?
Thanks,
-zm

        [[alternative HTML version deleted]]

______________________________________________
[email protected] 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