How to remove zero sum row from matrix
조회 수: 1 (최근 30일)
이전 댓글 표시
A=[1 2 3 4 5 6;
0 0 1 1 0 1;
0 0 1 0 1 0]
Sum of second and third row if equal to zero, then in new matrix that column is to be excluded. So, the result shall be
A=[3 4 5 6;
1 1 0 1;
1 0 1 0]
댓글 수: 0
채택된 답변
the cyclist
2017년 1월 24일
편집: the cyclist
2017년 1월 24일
colToRemove = sum(A(2:end,:))==0;
A(:,colToRemove) = [];
댓글 수: 1
추가 답변 (2개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!