Sparse Matrix Data Structure
(Redirected from sparse matrix data structure)
Jump to navigation
Jump to search
A Sparse Matrix Data Structure is a matrix data structure that can represent a sparse matrix.
- Context:
- It can range from being a Column-oriented Sparse Matrix Structure to being a Row-oriented Sparse Matrix Structure.
- Example(s):
- a scipy.sparse Matrix.
- …
- Counter-Example(s):
- See: Sparse Array Structure.