delete matrix row with certain value
1 回表示 (過去 30 日間)
古いコメントを表示
how can i remove the rows with a certain number say, 2?
0 件のコメント
採用された回答
その他の回答 (1 件)
Adam
2014 年 11 月 11 日
A = [2 3 4 5; 6 7 8 9; 2 1 1 1; 3 3 3 3];
A( any(A == 2, 2 ),: ) = [];
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Get Started with MATLAB についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!