Remove rows/columns with same elements
33 次查看(过去 30 天)
显示 更早的评论
Hi,
Is there a easy way to remove rows with same elements in a 2D matrix. For example, i have a matrix A = [1 2; 2 3; 1 2; 3 4; 2 1]
The 'unique' command doesn't help as it will give you the output [1 2; 2 3; 3 4; 2 1]. It's not deleting the last row [2 1] which has the same element as first row.
But i want the output like this [1 2; 2 3; 3 4].
Thanks,
Asad
0 个评论
采纳的回答
更多回答(1 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!