Removing certain values from columns in a matrix
1 次查看(过去 30 天)
显示 更早的评论
Hi!
I have a matrix looking something like this:
21 4.51076
21 48.3399
19 11.4743
21 36.6765
22 18.3587
23 19.7070
21 59.0842
20 40.9994
24 4.93227
28 44.4808
25 18.9996
24 29.4205
26 17.5263
26 28.4772
The elements in column 1 are as you can see not unique.
Out of the entrys in column 1 with the same value, i would like to keep only the smallest value in column 2 such as:
21 4.51076
NaN NaN
19 11.4743
Nan NaN
22 18.3587
23 19.7070
Nan NaN
20 40.9994
24 4.93227
28 44.4808
25 18.9996
NaN NaN
26 17.5263
NaN NaN
Any suggestions?
Regards,
Anders Holmberg
0 个评论
采纳的回答
Ameer Hamza
2020-11-25
编辑:Ameer Hamza
2020-11-25
Try this
A = [
21 4.51076
21 48.3399
19 11.4743
21 36.6765
22 18.3587
23 19.7070
21 59.0842
20 40.9994
24 4.93227
28 44.4808
25 18.9996
24 29.4205
26 17.5263
26 28.4772];
[~, idx] = sort(A(:,1));
C = splitapply(@(x) {[x(1,1) min(x(:,2)); nan(size(x)-[1 0])]}, A, findgroups(A(:,1)));
M = cell2mat(C);
M(idx,:) = M;
Result
>> M
M =
21.0000 4.5108
NaN NaN
19.0000 11.4743
NaN NaN
22.0000 18.3587
23.0000 19.7070
NaN NaN
20.0000 40.9994
24.0000 4.9323
28.0000 44.4808
25.0000 18.9996
NaN NaN
26.0000 17.5263
NaN NaN
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Matrices and Arrays 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!