On 08/27/2014 08:08 AM, phinn stuart wrote:
Hi everyone, how can I convert (1L, 480L, 1440L) shaped numpy array into (480L, 1440L)?Thanks in the advance. phinn
A simple assignment into the arrays shape does it: >>> a = numpy.zeros((1,480,1440)) >>> a.shape (1, 480, 1440) >>> a.shape = (480,1440) >>> a.shape (480, 1440) Gary Herron
-- https://mail.python.org/mailman/listinfo/python-list