필터 지우기
필터 지우기

How can I remove duplicate values

조회 수: 2 (최근 30일)
Luis Alves
Luis Alves 2017년 4월 20일
답변: Walter Roberson 2017년 4월 21일
Hi! I want remove duplicate values of array 'positions' where the corresponding value of d is lower.
Example:
[positions,d]=dsearchn(X,Y);
positions = 1 1 2 3 5 6 7 9 12 13 15 16
d= 235 386 189 67 158 266 180 92 187 191 156 194
In this case I want exclude the second position and obtain d= 235 189 67 158 266 180 92 187 191 156 194
Thanks, Appreciate the help !

답변 (1개)

Walter Roberson
Walter Roberson 2017년 4월 21일
[~, ~, uidx] = unique(positions, 'stable');
positions(uidx)
d(uidx)

카테고리

Help CenterFile Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by