在 Python 的 numpy 中,我可以这样做:
>>> import numpy as np
>>> m = np.array([[1,2,3,4],[5,6,7,8],[9,10,11,12]])
>>> indices = [1,3]
>>> m[:,indices]
array([[ 2, 4],
[ 6, 8],
[10, 12]])
换句话说,我可以根据任意(不一定是连续的)索引列表进行切片。我怎样才能在微风中做类似的事情?我正在寻找一些高效且最好是优雅的东西。