Borrar filtros
Borrar filtros

checking Sparsity of matrix

11 visualizaciones (últimos 30 días)
SANJOY MONDAL
SANJOY MONDAL el 2 de Feb. de 2018
Editada: Stephen23 el 2 de Feb. de 2018
I have a matrix
[ 0.9
0.8
0.32
0.22
0
0
0.36
0.25
]
how to check whether a matrix is sparse matrix or not using matlab

Respuestas (1)

Steven Lord
Steven Lord el 2 de Feb. de 2018
Do you want to check whether it is represented in MATLAB using the sparse data structure (in which case the issparse function is the correct tool?) Or do you want to check if it is sparsely populated even though it is stored using the full data structure? In the latter case, use the nnz and numel functions to determine the number of non-zero elements and the total number of elements in the matrix. If the number of non-zero elements is much smaller (how much smaller it needs to be is up to you) than the total number of elements, you could call your matrix sparsely populated.
As written your vector is not stored as a sparse matrix according to issparse, nor would I say it is sparsely populated since 75% of the elements are non-zero. A glass that is 3/4 full of liquid and 1/4 full of air is not mostly empty, it's mostly full.

Categorías

Más información sobre Sparse Matrices en Help Center y File Exchange.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by