nonzeros
Nonzero matrix elements
Syntax
Description
Examples
Nonzero Matrix Elements
Use nonzeros
to return the nonzero elements in a sparse matrix.
Create a 10-by-10 sparse matrix that contains a few nonzero elements. The typical display of sparse matrices shows a list of the nonzero values and their locations.
A = sparse([1 3 2 1],[1 1 2 3],1:4,10,10)
A = 10x10 sparse double matrix (4 nonzeros)
(1,1) 1
(3,1) 2
(2,2) 3
(1,3) 4
Find the values of the nonzero elements.
v = nonzeros(A)
v = 4×1
1
2
3
4
Location and Count of Nonzeros
Use nonzeros
, nnz
, and find
to locate and count nonzero matrix elements.
Create a 10-by-10 random sparse matrix with 7% density of nonzeros.
A = sprand(10,10,0.07);
Use nonzeros
to find the values of the nonzero elements.
v = nonzeros(A)
v = 7×1
0.9595
0.4218
0.7922
0.8003
0.1419
0.9157
0.6557
Use nnz
to count the number of nonzeros.
n = nnz(A)
n = 7
Use find
to get the indices and values of the nonzeros.
[i,j,v] = find(A)
i = 7×1
10
3
9
1
2
7
10
j = 7×1
2
5
6
10
10
10
10
v = 7×1
0.9595
0.4218
0.7922
0.8003
0.1419
0.9157
0.6557
Input Arguments
A
— Input array
vector | matrix | multidimensional array
Input array, specified as a vector, matrix, or multidimensional array.
A
can be full or sparse.
Data Types: single
| double
| int8
| int16
| int32
| int64
| uint8
| uint16
| uint32
| uint64
| logical
| char
Complex Number Support: Yes
Output Arguments
v
— Nonzero elements
column vector
Nonzero elements, returned as a column vector. v
is returned in
full-storage regardless of whether A
is full or sparse. The elements
in v
are ordered first by column subscript and then by row
subscript.
nonzeros
gives the v
, but not the indices
i
and j
, from [i,j,v] =
find(A)
.
Generally,
length(v) = nnz(A) <= nzmax(A) <= prod(size(A))
Extended Capabilities
C/C++ Code Generation
Generate C and C++ code using MATLAB® Coder™.
Thread-Based Environment
Run code in the background using MATLAB® backgroundPool
or accelerate code with Parallel Computing Toolbox™ ThreadPool
.
This function fully supports thread-based environments. For more information, see Run MATLAB Functions in Thread-Based Environment.
GPU Arrays
Accelerate code by running on a graphics processing unit (GPU) using Parallel Computing Toolbox™.
The nonzeros
function
fully supports GPU arrays. To run the function on a GPU, specify the input data as a gpuArray
(Parallel Computing Toolbox). For more information, see Run MATLAB Functions on a GPU (Parallel Computing Toolbox).
Distributed Arrays
Partition large arrays across the combined memory of your cluster using Parallel Computing Toolbox™.
This function fully supports distributed arrays. For more information, see Run MATLAB Functions with Distributed Arrays (Parallel Computing Toolbox).
Version History
Introduced before R2006a
MATLAB Command
You clicked a link that corresponds to this MATLAB command:
Run the command by entering it in the MATLAB Command Window. Web browsers do not support MATLAB commands.
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)
Asia Pacific
- Australia (English)
- India (English)
- New Zealand (English)
- 中国
- 日本Japanese (日本語)
- 한국Korean (한국어)