필터 지우기
필터 지우기

Robustness with fminimax

조회 수: 4 (최근 30일)
Mouloud
Mouloud 2012년 5월 31일
Hello everyone,
I have to study robustness of my system, so my variables are uncertain and I have to add another variable to my objective function and it becomes:
original objective-function: myfun = @(x) sum (x(1:n)./polyval(p3,x(1:n)));
robust optimization : min max myfun = @(x) sum ([x(1:n) + r(1:n)]./polyval(p3,[x(1:n) + r(1:n)])); min for "x" and max for "r" .
"r" is the perturbation so it is very small,
my problem is non-convex and with non-linear constraints, and I solve the original problem with fmincon and it provides a good optimum.
For the robust optimization, I think that I can solve it by the fminimax, but I don't know how formulate it ??
Thanks,

답변 (2개)

Sargondjani
Sargondjani 2012년 5월 31일
they way you present the problem now, you could just replace x(1:n) with y(1:n)=x(1:n) + r(1:n) in the orginal problem....
if instead you want to get solutions for every r then you could looop through r:
myfun=@(x,r)....
r=...
for ir=1:length(r)
my_fun_ir=@(x)myfun(x,r(ir))
%solve minimax where you store every solution as x(ir), for example
end
i hope this helps...

Mouloud
Mouloud 2012년 5월 31일
think you for your answer,
but, I want to solve the minimax problem for overall profile, the objective is to find a robust solution i.e:
when the "x" makes a small variation "r", r is smaller then 0.5 for example , the solution is robust.
so it is a global optimization and I have to take into account the perturbation "r" for al instant n=length(x)

카테고리

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