remove rows with all zeros
254 ビュー (過去 30 日間)
古いコメントを表示
I have
a =
1 2 3
0 0 0
2 1 0
4 5 0
0 0 0
2 0 1
I need
b=
1 2 3
2 1 0
4 5 0
2 0 1
0 件のコメント
採用された回答
Walter Roberson
2012 年 6 月 6 日
b = a(any(a,2),:);
5 件のコメント
Mohamed Nedal
2019 年 12 月 20 日
Hi Walter,
Would you please explain this line?
b = a(any(a,2),:);
その他の回答 (1 件)
Geoff
2012 年 6 月 6 日
Search facility on Answers shows this question is asked a lot... Here's one of the more recent.
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!