필터 지우기
필터 지우기

Solve minimax constraint problem

조회 수: 1 (최근 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 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