I have a numpy array of dimension (48, 366, 3) and I want to remove the last column from the array to make it (48, 365, 3). What is the best way to do that? (All the entries are integers. I'm using Python v2.6)
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You could try http://docs.scipy.org/doc/numpy/reference/generated/numpy.delete.html or just get the slice of the array you want and write it to a new array. For example:
or equivalently:
or:
|
||||
|
|
|
Along the lines:
|
|||
|
|