checking Sparsity of matrix

11 次查看(过去 30 天)
SANJOY MONDAL
SANJOY MONDAL 2018-2-2
编辑: Stephen23 2018-2-2
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

回答(1 个)

Steven Lord
Steven Lord 2018-2-2
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.

类别

Help CenterFile Exchange 中查找有关 Sparse Matrices 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by