Borrar filtros
Borrar filtros

Extract non-zero elements from matrix with double precision numbers

2 visualizaciones (últimos 30 días)
How can I extract all of the non-zero number from a matrix? I tried using the function nonzero(M), but since the values in the matrix are all decimals, I got the error "Undefined function 'nonzero' for input arguments of type 'double' ".
I just wand a row vector (or column vector, or whatever is easiest) of all non-zero elements. Obviously I can just loop through each element, but this is insanely inefficient.

Respuesta aceptada

Azzi Abdelmalek
Azzi Abdelmalek el 15 de Mayo de 2013

Más respuestas (1)

Matt Kindig
Matt Kindig el 15 de Mayo de 2013
Editada: Matt Kindig el 15 de Mayo de 2013
notZeros= M(M~=0);
Keep in mind that due to numerical precision, some of your matrix elements may be small but not identically zero. You might want to use some sort of tolerance instead, such as:
notZeros = M(abs(M)<10*eps); %for example

Categorías

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

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by