scipy.sparse.csc_matrix. nonzero# csc_matrix.nonzero()[source]# 陣列/矩陣的非零索引。 傳回包含陣列中非零元素索引的陣列元組 (row,col)。 範例 在瀏覽器中試試看! >>> from scipy.sparse import csr_array >>> A = csr_array([[1, 2, 0], [0, 0, 3], [4, 0, 5]]) >>> A.nonzero() (array([0, 0, 1, 2, 2], dtype=int32), array([0, 1, 2, 0, 2], dtype=int32)) 返回在新分頁中開啟