Retain IDs of rows kept by the Unique function

1 Ansicht (letzte 30 Tage)
Alessandro
Alessandro am 1 Mär. 2017
Bearbeitet: Alessandro am 1 Mär. 2017
I have a matrix composed in the following way: [ID_1 ID_2 Resisting_Area]
ID_1 and ID_2 are integer values, Resisting_Area is float.
I need to perform the unique operation on the first 2 columns of the matrix, but also I need to carry the third column value for the kept rows. Is there a simple way to do this?
MWE:
A = [1 2 3.0001; 1 2 3.0002; 2 4 5.12];
I would like to select only the first and third rows but
B = unique(A,'rows')
won't do it, since the resisting area value is not integer and it is not correctly detected as duplicate. Also uniquetol does not have a 'rows' option.

Akzeptierte Antwort

Roger Stafford
Roger Stafford am 1 Mär. 2017
Bearbeitet: Roger Stafford am 1 Mär. 2017
[U,m] = unique(A(:,1:2),rows);
B = [U,m];
I'm not sure which you want to keep, the indices of the "kept" rows or those kept third column values themselves. If the latter, change the second line of code to:
B = [U,A(m,3)];
Note that the rows that are "kept" depends on the 'first' or 'last' option, though that doesn't affect the contents of U, only that of m.
  1 Kommentar
Alessandro
Alessandro am 1 Mär. 2017
Bearbeitet: Alessandro am 1 Mär. 2017
That's exactly what I was looking for. For some reason I didn't understand the second output argument was used to track IDs of the sorted first output, when reading the help. Plus, I do not really care which one is kept when a repetition is found. The 3rd column values only differ for floating errors. Thank you!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Creating and Concatenating Matrices finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by