remove rows by pick the min value in another column

3 views (last 30 days)
Can you help?
On below matrix, for same X and Y, pick smallest Z, then put into a new matrix by removing the rows? and also give the row number for which row is kept.
X Y Z
60,-40,1.1
55,-40,3.1
55,-45,4.5
60,-45,5.3
60,-40,7
55,-40,8.4
55,-45,9.8
60,-40,11.2
60,-45,12.6
55,-40,14
55,-45,15.4
60,-45,16.8
60,-40,18.2
60,-45,19.6
55,-40,21
60,-40,22.4
55,-45,23.8
60,-45,25.2
55,-40,26.6
55,-45,28
  5 Comments
booterr
booterr on 15 Apr 2016
not a duplicate questions. For the first thread, the answer did not give which row number the Z is located in the initial matrix.
I am not only needing the value of Z, but also need the row number of which Z is outputted.
thanks

Sign in to comment.

Accepted Answer

Andrei Bobrov
Andrei Bobrov on 15 Apr 2016
Edited: Andrei Bobrov on 15 Apr 2016
x=[55,-45,9.8
60,-40,11.2
60,-45,12.6
55,-40,14
55,-45,15.4
60,-45,16.8
60,-40,18.2
60,-45,19.6
55,-40,21
60,-40,22.4
55,-45,23.8
60,-45,25.2
55,-40,26.6
55,-45,28]
[a,~,c] = unique(x(:,1:2),'rows');
n = size(a,1);
valuemin = zeros(n,4);
for ii = 1:n
i0 = find(c == ii);
[valuemin(ii,3),i1] = min(x(i0,end));
valuemin(ii,[1:2,4]) = [a(ii,:),i0(i1)];
end
or
[a,~,c] = unique(x(:,1:2),'rows');
idx = accumarray(c,(1:size(x,1))',[],@(y)y(min(x(y,3))==x(y,3)));
valuemin = [a,x(idx,3),idx];

More Answers (0)

Categories

Find more on Creating and Concatenating Matrices in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!