[Numpy-discussion] Extracting all the possible combinations of a grid

Stephen McInerney spmcinerney at hotmail.com
Fri Sep 21 23:47:57 EDT 2007


Gael,

The pure Pythonic solution is a list comprehension involving multiple sequences:

x = range(0,n)
y = x
z = x
t = [(xx,yy,zz) for xx in x for yy in y for zz in z]

You don't need subscripting, or recursive fns, or Knuth.
Runtime is almost instant (for n=10).
All the NumPy solutions look more painful, so if needs be, transform the NumPy sequences to Python ones.

Regards,
Stephen
_________________________________________________________________
Can you find the hidden words?  Take a break and play Seekadoo!
http://club.live.com/seekadoo.aspx?icid=seek_wlmailtextlink


More information about the NumPy-Discussion mailing list