omit zeros from matrix and have the shape of matrix
조회 수: 4 (최근 30일)
이전 댓글 표시
A=[0,0;0,0;0,0;1,2;2,5;5,7;7,8];
I want to omit zero from this matrix. result should be
New_A=[1,2;2,5;5,7;7,8];
I use this code
A(A==0) = [];
But giving me array.
댓글 수: 0
채택된 답변
Kevin Rawson
2019년 4월 14일
If you are trying to get rid of rows with zeros:
A(all(A == 0, 2), :) = [];
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!