how to delete repeated coordinates

if i have d=[ 3 4; 4 3;7 6 ;6 7]
so i want this result d=[ 3 4; 7 6]

回答 (1 件)

dpb
dpb 2015 年 6 月 14 日

0 投票

Presuming values are significant but order isn't, simplest that comes to mind is
>> unique(sort(d,2),'rows')
ans =
3 4
6 7
>>

カテゴリ

質問済み:

2015 年 6 月 14 日

回答済み:

dpb
2015 年 6 月 14 日

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by