finding the 10 lowest values

19 次查看(过去 30 天)
Adam
Adam 2011-10-13
评论: Adam 2017-2-23
I have a matrix with a lot of data, and i want to find the 10 lowest values of a specific collum.
Does anybody know how to do that?
i was thinking about using the function min() but it does not allow me to select a specific collum, or finding more than the one value which is the lowest.

采纳的回答

Artik Crazy
Artik Crazy 2011-10-13
  • Let's say you have a matrix of 10x10:
x=rand (10,10);
  • Sort it by the columns in ascending order:
y=sort (x,1, 'ascend')
*Now take the 5 first rows - these are the lowest values in every column:
z=y(1:5, :)

更多回答(2 个)

the cyclist
the cyclist 2011-10-13
First 10 values of "sorted_x" is what you want.
A = rand(100,10);
columnToSort = 7;
[sorted_x, index] = sort(A(:,columnToSort),'ascend');

Marc
Marc 2017-2-23
But if I want the indexes of these 10 values? Should I sort to find the values and then "find" these values in the matrix?
Is there a more elegant way?
  1 个评论
Adam
Adam 2017-2-23
the cyclist gave an answer that also returns indices. You can just feed these directly into your array.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Shifting and Sorting Matrices 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by