如果我们谈论的是 numpy 数组,这将返回model
位于Best[i][j]
(这应该是来自另一个数组的数字)行和第 6 列的数组的值。这是一个例子:
import numpy as np
model = np.array([[1,2],[3,4]])
Best = np.array([[0,0],[1,1]])
i = 0 # Best[i][j] is 0
j = 1
print model[Best[i][j]][1] # It prints model[0][1], which is 2