sparse_mx

  • #技术清单
  • coo (Coordinate Matrix)
    • (row, col, data)
    • 不支持切片和算术运算操作
  • CSR(Compressed Sparse Row Matrix)
    • indicesindptrdata
    • 优点:高效运算
    • 缺点:切片慢
    • csr_matrix((data, indices, indptr), [shape=(M, N)])
    • sp.csr_matrix(A),A.todense()