generating all combinations.
- To: mathgroup at smc.vnet.net
- Subject: [mg22395] generating all combinations.
- From: d8442803 at student.nsysu.edu.tw (Wen-Feng Hsiao)
- Date: Sun, 27 Feb 2000 18:55:35 -0500 (EST)
- Organization: NSYSU
- Sender: owner-wri-mathgroup at wolfram.com
Dear all,
I would like to generate all the combinations n-digit lists, which can
vary between a certain range and duplications are allowed. The three
digits with range between -2 to 2 is the following:
allcomb =
Table[{i, j, k}, {i, -2, 2}, {j, -2, 2}, {k, -2, 2}];
fltcomb = Partition[Flatten[allcomb], 3];
Is there a more succinct way to do that? If I would like to expand the
code to 10 digits, the code would looks clumsy.
Thanks for your help.
Wen-Feng