In [3]:
import numpy as np
Out[3]:
In [13]:
matrix = np.reshape(np.arange(12),(3,4))
type(matrix)
Out[13]:
In [12]:
matrix[matrix[:,0]>1]
Out[12]: