Functios in MatLab for matrixes

Is there a function that, once introduced any matrix, counts how many 0's there are, how many elements between 0 and 1, and how many are bigger than 1 in said matrix? Thanks!

 Respuesta aceptada

Kelly Kearney
Kelly Kearney el 9 de En. de 2014
x = rand(100);
n0 = sum(x(:) == 0);
n0to1 = sum(x(:) > 0 & x(:) <= 1);
ngt1 = sum(x(:) > 1);

Más respuestas (1)

Matt J
Matt J el 9 de En. de 2014
Editada: Matt J el 9 de En. de 2014
You can do
nnz(A>1)
or
sum(A(:)>1)
and similarly for other logical conditions. In some cases, nnz will be the fastest option for sparse matrices. Otherwise, sum() is usually the fastest.

Categorías

Más información sobre Sparse Matrices en Centro de ayuda y File Exchange.

Preguntada:

el 9 de En. de 2014

Editada:

el 9 de En. de 2014

Community Treasure Hunt

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

Start Hunting!

Translated by