how do i find argmax?
870 views (last 30 days)
Show older comments
how do i find argmax of, say x=[1 2] without any user defined function?
0 Comments
Accepted Answer
More Answers (2)
Lukasz Laszko
on 28 Oct 2019
Edited: Lukasz Laszko
on 28 Oct 2019
I'm afraid the answer by Walter Roberson is not correct. According to docs the second returned value contains indices of the minimum/maximum values of x. So to find argmax, you need to call x(max_ind),
eg.
x=0.1:.01:4*pi;
[max_val max_ind]=max(cos(x))
argmax=x(max_ind)
-->> max_val=1
-->> argmax=2pi
-->> max_ind=619
3 Comments
Walter Roberson
on 18 May 2021
In the case a function that is effectively f(x(K)) and what you wanted was the x(K) then it would not be unreasonable to take
fx = f(x);
[~, argidx] = max(fx);
argmax = x(argidx);
This adds an extra level of indirection, but it would be a common one.
See Also
Categories
Find more on Web Services in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!