Extract non-zero elements from matrix with double precision numbers
조회 수: 3 (최근 30일)
이전 댓글 표시
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.
댓글 수: 0
채택된 답변
Azzi Abdelmalek
2013년 5월 15일
out=M(M~=0)
댓글 수: 1
Azzi Abdelmalek
2013년 5월 15일
편집: Azzi Abdelmalek
2013년 5월 15일
nonzeros(M)
also should work (nonzeros with s)
추가 답변 (1개)
Matt Kindig
2013년 5월 15일
편집: Matt Kindig
2013년 5월 15일
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
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Resizing and Reshaping Matrices에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!