how to determine row with all zero
이전 댓글 표시
For example ; adj=[ 0 0 14 15; 0 0 0 0; 4 0 0 14; 3 10 0 14; 0 3 0 0; 9 10 12 15; 8 9 10 15; 7 9 0 12; 6 7 8 15; 4 0 6 7; 0 0 0 8; 6 8 0 14; 0 3 0 12; 0 3 4 12; 0 6 7 9;] How to determine row if all elements of that row zero For example, row 2 How to determine row which all element zero
답변 (1개)
Andrei Bobrov
2017년 4월 5일
row_all_zeros = find(all(adj == 0,2));
댓글 수: 1
NALLARASU KRISH
2023년 2월 24일
This command works pleasantly. Keep doing good!
카테고리
도움말 센터 및 File Exchange에서 Data Type Identification에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!