我正在尝试使用索引矩阵
if let index = self.geoLocList.index(where: { $0.geoUid == geoLocs.geoUid }){
self.geoLocList.remove(at: index)
结果是
import numpy as np
z = np.array([[0,1,0],[1,0,0]])
phi = np.array([[0.8,0.2],[0.1,0.9]])
w = phi[z]
print(w)`
有人可以解释这里的索引工作原理吗? 帮助非常感谢。 谢谢。