I have a 2D array.  Say it is 10x10 and I want a 1D Array of 100
elements...
What is the syntax?

oneD = reshape(twoD, (100,1))
or
oneD = reshape(twoD, (1,100))

One I guess is the transpose of the other but both seem to be
arrays of arrays...

help?!

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to