Concept Flow - COO format (Coordinate)
Start with sparse matrix data
Extract row indices, col indices, values
Store as three arrays: rows, cols, data
Use COO format to represent sparse matrix
Perform operations or convert to dense if needed
End
COO format stores a sparse matrix by keeping three arrays: row positions, column positions, and values of non-zero elements.