scipy.sparse.csc_matrix. nonzero# csc_matrix.nonzero()[source]# 数组/矩阵的非零索引。 返回一个包含数组非零元素索引的数组元组 (行,列)。 示例 在你的浏览器中尝试它! >>> 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]), array([0, 1, 2, 0, 2])) 返回在新标签页中打开