On Thu, 01 Jun 2006, Christopher Barker apparently wrote: > Is this the best I can do? > >>> N.concatenate(((1,2),(3,4))).reshape(2,2) > array([[1, 2], > [3, 4]]) >>> import numpy as N >>> N.vstack([(1,2),(3,4)]) array([[1, 2], [3, 4]]) hth, Alan Isaac