Solve minimax constraint problem

2 次查看(过去 30 天)
Hi,
I would like to solve minmax problem. like below:
So first of all I try to use two fmincon but as it is slow I noticed Matlab offer fminmax function: http://www.mathworks.co.uk/help/optim/ug/fminimax.html
So I would like to ask is it possible to give the range to 'i' in fminmax function?
With best regards,

采纳的回答

Matt J
Matt J 2014-6-26
编辑:Matt J 2014-6-26
So I would like to ask is it possible to give the range to 'i' in fminmax function?
You will need to discretely sample t in order for fminimax to be applicable. You also need to optimize over a region where the F_i are differentiable, so if p<=1 in your p-norms, you will also have to keep Px, Qx and Rx away from zero.
  3 个评论
Matt J
Matt J 2014-6-26
编辑:Matt J 2014-6-26
If U_t is really a discrete vector, then your problem isn't really a minimax in the standard sense. You can rewrite the problem as a continuous minimization problem in both w and u,
min_{w,u}(-J0(w,u))
So, it's really just a regular minimization problem in the concatenated space of vectors z=[w,u]
min_z -J0(z)
Sina
Sina 2014-6-26
编辑:Sina 2014-6-27
Thanks,
Actually you are right about overall cases but the idea of my code is to find the maximum value of the cost function when disturbance occurs in the certain range of wmin and wmax and then try to find the opimal manipulated variable which can minimize our cost function in the present of the maximum disturbance. So u and w are different values which must stay constant in each min max. u is constant in maximum part and w is constant in mimimum part. The main problem for using two fmincon is the computation time so maybe fminmax is better if I can define my problem there.

请先登录,再进行评论。

更多回答(0 个)

类别

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