标签: python numpy
我有一个数组,想要选择特定的行和特定的列。 E.g:
import numpy as np X = np.random.rand(10,5)
什么有效:
rows = [1,2,3] col = [1,2] X[rows,:] X[:,col]
但是,我无法选择:
X[row,col]
我怎样才能做到这一点?