numpy:找到指定元素的索引

目的:在numpy數組中知道指定元素的索引 函數: np.argwhereweb >>>x >>>array([[0, 1, 2], [3, 4, 5]]) >>>np.argwhere(x>1) >>>array([[0, 2], [1, 0], [1, 1], [1, 2]])
相關文章
相關標籤/搜索