argmax of vector in matlab

6 次查看(过去 30 天)
Mohamed Jamal
Mohamed Jamal 2020-5-20
Hi guys, Im searching if there's argmax in matlab for this term W*V , argmax(W*V) related to W (v is constant and W is variable so argmax is related to W) .. W and V are vectors ... any help how can I find the maximum vector of W that maximaize the term W*V ? thanks alot !!!!
  1 个评论
James Tursa
James Tursa 2020-5-20
This is not clear. If V and W are both vectors, what do you intend the operation W*V to produce? Is this supposed to be an inner product or outer product? What are the sizes of V and W?

请先登录,再进行评论。

回答(1 个)

Raunak Gupta
Raunak Gupta 2020-5-28
Hi,
From the question I understand you have a vector V that is constant, and you are taking dot product with a vector W, assuming both have same length. This operation of finding maximum value of that term cannot be called as argmax instead it’s looks as an optimization problem where you need to maximize W.*V given V and there is no constraint on W.
Since, you didn’t mention any constraint on values inside W, logically I can say that maximum can be infinity by setting W accordingly. For these maximization problems ideally, you need constraint on vector that needs to be calculated.
You can setup the optimization problem as mentioned here using fmincon. Since you want to maximize the value you can put a negative on full objective function because fmincon minimizes the objective function by default.
Hope it helps!

类别

Help CenterFile Exchange 中查找有关 Solver Outputs and Iterative Display 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by