How to optimize two optimization variables within the same objective function?

조회 수: 1 (최근 30일)
I need to optimize (two optimization variables) as follow
f(x) min (X+Y) s.t (n,m)
y1 = sum(a1+n+c1-d1+(n1/S));
y2 = sum(a1+n+c1-d2+(n2/S));
y3 = sum(a1+n+c1-d3+(n3/S));
y4 = sum(a1+n+c1-d4+(n4/S));
y5 = sum(a1+n+c1-d5+(n5/S));
X = 0.125 * (y1 + y2+ y3+ y4+ y5);
y6 = sum(a2+m+c2-d6+(n6/S));
y7 = sum(a2+m+c2-d7+(n7/S));
y8 = sum(a2+m+c2-d8+(n8/S));
y9 = sum(a2+m+c2-d9+(n9/S));
Y= 0.25 * (y6 + y7+ y8+ y9);
fun = @(n,m)extension(n,m,a1,a2,c1,c2,d1,d2,d3,d4,d5,d6,d7,d8,d9,n1,n2,n3,n4,n5,n6,n7,n8,n9,S);
A = []; B = []; %linear inequality constrains
Aeq = []; beq = []; %linear equality constraints
lb = [0 0]; ub = [10 10];
  댓글 수: 3
Sherif Shokry
Sherif Shokry 2018년 2월 8일
Thanks a lot Mr. Torsten for your quick response.
To avoid Zeros solutions what is the apporpirate way to develop this objective fun??
John D'Errico
John D'Errico 2018년 2월 9일
How can you avoid a zero solution? You said you wanted a minimum. That is where the function is at its minimum value. "Developing the objective function" has no meaning. It is what it is.

댓글을 달려면 로그인하십시오.

답변 (1개)

John D'Errico
John D'Errico 2018년 2월 8일
Yes. I agree with Torsten. And just think! You saved the time of trying to figure that out with an optimizer.
Were you to try to use one, you need to create a VECTOR of length 2, containing the values of n and m. The optimizer will vary those values. But don't bother, since it is [0,0].
  댓글 수: 5
John D'Errico
John D'Errico 2018년 2월 9일
Yes, but you did not think about what I wrote. The minimum value of that objective function occurs at
b(1)=0, b(2)=0
There is no need to even use an optimizer to find that point.
You could use fmincon however. It should give you approximately [0,0] (though not exactly so. This is a numerical solver.) Why not try it? Use the code that you wrote.
Walter Roberson
Walter Roberson 2018년 2월 9일
"So these to values of X is the upper and lower limits??"
No, x(1) of the output of fmincon is the first variable and x(2) of the output of fmincon is your second variable. Those are not ranges for variables and they are not ranges of function values: they are the location that minimized the function.
If you were to modify to
[x, fval] = fmincon(fun,x0,A,b)
then the function value at that optimal location would also be output.

댓글을 달려면 로그인하십시오.

태그

아직 태그를 입력하지 않았습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by