several minimum values on a vector

44 次查看(过去 30 天)
I want to use the min function to find the index of the element with minimum value on vector Z:
[X,Y] = min(Z,[],1);
how can I detect when there are several elements with the same value which are all minimums and assign a another value to those indices?

回答(2 个)

Riccardo Scorretti
Riccardo Scorretti 2022-4-30
I'm not sure to understand completely the question, hower you can use find to get all the values which are strictly equal to the minimum value. The index returned by min is the first one, so to get the index of other items it is enough to get rid of the first one.
In the following example the minimum is 1, and it is found in positions 4, 6 and 7.
z = [ 2, 3, 5, 1, 2, 1, 1, 9];
[val, ind] = min(z)
val = 1
ind = 4
other_ind = find(z == val)
other_ind = 1×3
4 6 7
other_ind = other_ind(2:end)
other_ind = 1×2
6 7
  1 个评论
Riccardo Scorretti
Riccardo Scorretti 2022-4-30
Of course, you can use other_ind to affect a different value (which one, by the way?) to those elements.

请先登录,再进行评论。


Walter Roberson
Walter Roberson 2022-4-30
Provided you are dealing with a vector
X = min(Z);
Y = find(Z == X);
Generalizing this to the case of arrays (2 or more dimensions) gets a bit trickier to vectorize, since the indices returned by min() are relative to the dimension rather than being absolute indices -- that and the fact that in one column there might be only one value that is the min for the column, but another column might have more than one copy of the min for that column, so the number of values to return per column could vary. Makes vectorization tricky.

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by