How can I remove an entire row of zeros in a matrix?
1 回表示 (過去 30 日間)
古いコメントを表示
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
0 件のコメント
採用された回答
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 件のコメント
その他の回答 (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!