MATLAB Function Reference | Search  Help Desk |
nzmax | See Also |
Amount of storage allocated for nonzero matrix elements
n=
nzmax(S)
n = nzmax(S)
returns the amount of storage allocated for nonzero elements.If S is a sparse matrix... |
nzmax(S) is the number of storage locations allocated for the nonzero elements in S . |
If S is a full matrix... |
nzmax(S) = prod(size(S)) . |
nnz(S)
and nzmax(S)
are the same. But if S
is created by an operation which produces fill-in matrix elements, such as sparse matrix multiplication or sparse LU factorization, more storage may be allocated than is actually required, and nzmax(S)
reflects this. Alternatively, sparse(i,j,s,m,n,nzmax)
or its simpler form, spalloc(m,n,nzmax)
, can set nzmax
in anticipation of later fill-in.
find
Find indices and values of nonzero elements
nnz
Number of nonzero matrix elements
nonzeros
Nonzero matrix elements
size
Array dimensions
whos
List directory of variables in memory
isa
Detect an object of a given class