I'm trying to delete the arrays of this matrix:
https://mega.co.nz/#!wNo2Cb5T!0EoALVMtTJbC1-7dgFLbVK8deinL8tGK0eI68bRCOwo
I need delete only the arrays that have -1 in the last column, I tried this but doesn't work:
for i in range (m):
if matriz[i][8]==-1:
matriz=numpy.delete(matriz,i,0)
Any idea? :)
'It doesn't work?'. Does it do nothing? Does it crash? Does it produce an adverse result?