Delete rows with same elements
古いコメントを表示
a=[2 3 2;3 3 3;4 4 4;2 5 4; 3 5 5; 4 4 4; 7 3 4]
how do I delete only those rows where elemets repeat for entire row length. In this example matrix, the three rows with all 3s and all 4s where this happens.
採用された回答
その他の回答 (1 件)
Walter Roberson
2018 年 11 月 25 日
mask = all(diff(a, [], 2) == 0)
Now you can use mask as the row selector in deletion.
1 件のコメント
Walter Roberson
2018 年 11 月 26 日
a(mask,:) = [];
カテゴリ
ヘルプ センター および File Exchange で Correlation and Convolution についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!