From: Alan G I. <ai...@am...> - 2006-06-01 18:44:54
|
On Thu, 01 Jun 2006, Christopher Barker apparently wrote:=20 > Is this the best I can do?=20 > >>> N.concatenate(((1,2),(3,4))).reshape(2,2)=20 > array([[1, 2],=20 > [3, 4]])=20 >>> import numpy as N >>> N.vstack([(1,2),(3,4)]) array([[1, 2], [3, 4]]) hth, Alan Isaac |