Array Mode Max Find

2 次查看(过去 30 天)
T
T 2013-3-14
I need to consider the case in which the maximum is a mode.
With
A = [1 1 1 1 6 7 7 1 1 3 5 6 7 7 1 1 3 5 6 7 7 1 1 3 5 6 7 7];
I need to get the indices for the max, which I have tried and it worked but suppose I have repeated minimum and for some reason it gives me more indices than needed.
So as I said, so oink should be returning:
6 13 20 27
but instead I get
1 6 8 13 15 20 22 27
[m,f,c] = mode(A); Tmode = max(c{1})
Tmax = max(A); if Tmax == Tmode
oink = find(diff(A)==0); % <----- the problem occurs here
test_idx = [1;oink];
else
label = [find(A==max(A))];
test_idx = [1;label];
end
The last condition doesn't pose a problem, it's the first. The problem would arise if I have both two repeated min and max. find(diff(A)==0) would return both. Is there a way around this?
Now suppose I have a vector with distinct elements A = [ 1 2 3 4 5 6]
c would return as the entire array. This is not what I want.
It would fail from :
[m,f,c] = mode(A);
Tmode = max(c{1})
If I had just taken Tmode = mode(A) then it would work but not progress to the first case.
Any advice?
  3 个评论
T
T 2013-3-14
See my comment to your post below.
Jan
Jan 2013-3-18
Here you see the next problem, Anthony: There is a bunch of comments and it is not clear where to search. Therefore it is recommended, to write all useful information to the original question by editing it. Marking the additions by "[EDITED]" let others know, where new informations are added.

请先登录,再进行评论。

采纳的回答

Jan
Jan 2013-3-14
I'm not sure if I understand the question. Are you looking for:
A = [1 1 3 5 6 7 7];
[value, index] = max(A)
?
  8 个评论
T
T 2013-3-14
Actually the code fails if I have the following example
A = [ 1 2 3 4 5 1 2 3 4 5 1 2 3 4 5 1 2 3 4 5 1 2 3 4 5 ]
It will make Tmode = 5 and Tmax is obviously 5 and won't go the second case even though the elements are in sequence
Jan
Jan 2013-3-18
编辑:Jan 2013-3-18
I still do not get what you are searching for. Are you looking for the most frequent element, and when there are multiple of them you want the largest one? Or does the order of elements matter? I assume one single sentence would clarify the question immediately. And please add this by editing the original question, such that other reader do not have to dig in a pile of comments. Thanks.

请先登录,再进行评论。

更多回答(0 个)

类别

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