フィルターのクリア

Solve minimax constraint problem

2 ビュー (過去 30 日間)
Sina
Sina 2014 年 6 月 26 日
編集済み: Sina 2014 年 6 月 27 日
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 Center および File ExchangeSolver 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