How can I remove an entire row of zeros in a matrix?

조회 수: 1 (최근 30일)
Dario
Dario 2018년 3월 8일
편집: David Fletcher 2018년 3월 8일
If I have a matrix like this one:
45 23 54
0 0 0
9 3 32
How can I remove the second row and obtain this matrix?
45 23 54
9 3 32

채택된 답변

David Fletcher
David Fletcher 2018년 3월 8일
편집: David Fletcher 2018년 3월 8일
a=[45 23 54;0 0 0;9 3 32];
zero=a==0;
ind=all(zero,2);
a(ind,:)=[]
Presumably the entire row has to have zero in every column for it to be removed

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by