Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have 5 items each of which can take on the value of 1 or -1. I want to generate a matrix that consists of rows of the possible combinations. The order of the items does not matter and the order of the combinations does not matter. I know I could do this mechanically, but I thought that someone must know a shortcut to generating this matrix. I apologize if this is similar to other questions but none of the solutions I have found can be applied to this particular problem with my programming skills.

share|improve this question
programming language? r?! – Claudiu Oct 22 '10 at 3:00
"The order of the items does not matter"? You want matrix of 6 rows? First with ones, second with 4 ones and one -1, and so on? Or I really need coffee... – Marek Oct 22 '10 at 7:30

3 Answers

up vote 14 down vote accepted
expand.grid(c(-1,1), c(-1,1), c(-1,1), c(-1,1), c(-1,1))
share|improve this answer
Ah, that is so much nicer than mine! – Charles Oct 22 '10 at 3:07
Thanks! I love one line of code answers. – ProbablePattern Oct 22 '10 at 13:00

To generalize Greg's answer:

N   <- 5
vec <- c(-1, 1)
lst <- lapply(numeric(N), function(x) vec)
as.matrix(expand.grid(lst))
share|improve this answer
Thanks, that also helps! – ProbablePattern Oct 22 '10 at 12:50

Count from 0 to 32 and generate all 5 digit binary numbers. you have all combinations of 0 and 1. when using the combination just substitute 0 with -1 :).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.