If I have following type of 2-D array which can have entire row of zero's
1 3 7
3 6 9
0 0 0
2 3 8
I want following output array:
1 3 7
3 6 9
2 3 8
Can someone please help?

 채택된 답변

Fangjun Jiang
Fangjun Jiang 2019년 10월 15일

0 개 추천

a=[1 3 7; 3 6 9; 0 0 0;2 3 8];
b=a(~all(a==0,2),:);

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Data Types에 대해 자세히 알아보기

태그

질문:

2019년 10월 15일

댓글:

2019년 10월 15일

Community Treasure Hunt

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

Start Hunting!

Translated by