Is there a function for argmax?

조회 수: 192 (최근 30일)
Javier Biera
Javier Biera 2018년 7월 5일
댓글: Walter Roberson 2020년 1월 7일
I am looking for a function that selects the argmax value from a vector.
aux = argmax(P); %P is a normal vector
Supposedly there should a function directly called argmax, but is not working (error = Undefined function or variable 'argmax'). Is there any other function? (I am working with the 2017a version).
  댓글 수: 5
Anton Semechko
Anton Semechko 2018년 7월 5일
편집: Anton Semechko 2018년 7월 5일
Use syntax
[P_max,id_max]=max(P);
Here, id_max is the index of P_max in P, so that P_max == P(id_max)
Stephen23
Stephen23 2018년 7월 5일
편집: Stephen23 2018년 7월 5일
@Javier Biera: did you read the max documentation? It's second output is an index:
[~,idx] = max(...)

댓글을 달려면 로그인하십시오.

답변 (2개)

Image Analyst
Image Analyst 2018년 7월 5일
It's probably some function that someone wrote, like the person who gave you the code. Ask them for it. Otherwise, can you tell us how aux is used? That may give us some clue as to what argmax gives. Like it really should be nargin (the number of input arguments) or the max value of some matrix inputted into the argument list or who knows what.

Alan
Alan 2020년 1월 6일
function y = argmax(x)
[~,y] = max(x);
end
  댓글 수: 3
Alan
Alan 2020년 1월 7일
That is a step more comprehensive, but to cover all the edge cases would need a lot more work. In my opinion, there should be a standard MATLAB function for this.
Walter Roberson
Walter Roberson 2020년 1월 7일
Easier I suspect to return
y == max(x, [], dim);
which would be a logical the same size as the original. That removes the need to worry about different sizes of output for different columns.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Graphics Object Programming에 대해 자세히 알아보기

태그

제품


릴리스

R2017a

Community Treasure Hunt

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

Start Hunting!

Translated by