How to loop a objective function using the optimization toolbox?
Show older comments
Hi everyone,
I have a question that how can I put a "loop" structure in a optmization problem.
In my problem I have two binary decision variables and a objective function based on these two variables, and I am trying to use optmization toolbox to minimize the objective function.
There are 4 time periods in total, and the binary decision variables are changing(differs) in each time period. My objective function is built on the decision variable so that the objective function is for one time period as well. My goal is to minimize my objective function over all time periods.
For example, I have two binary decision variabe "y" and "s" that differs in each time period,
for n=4 %4 years in total
t=1:n
y=optimvar('y',[4,1],'Type','integer','LowerBound',0,'UpperBound',1);%binary decision variable
s=optimvar('s',[4,1],'Type','integer','LowerBound',0,'UpperBound',1);%binary decision variable
obj=optimproblem
obj.Objective = 2y+3s %minimize 2y+3s
obj.Constraints.precedence=y(t)-y(t-1)>=0 % a precedence constraint about y
[sol,fval] = solve(obj) % maybe use other method, i am supposed to use simmulated annealing
Accepted Answer
More Answers (1)
Bartlomiej Mroczek
on 27 Apr 2021
0 votes
Hello to all Geeks:)
I work in the optimization area of the defined function f_PV.
The goal is to find optimal values of the vector a_PV for which ranges are defined.
The function f_PV only exists in a certain range x_PV.
Optimization is about looking for a mini. the values of the vector a in the range of the function.
Code snippet.
Defining the optimization vector
a_PV = optimvar("a_PV", [1,9],"LowerBound",[0.1; 0.1; 0.1; 0.1; 0.1; 0.1; 0.1; 0.1; 0.1]);
Defining a range for x_PV
x_PV = DANE_P_minus(idx0b:idxEb,1)
Defining the function f (a)
for i= x_PV(1):x_PV(end)
f_PV =a_PV(1)*sin(e1*x_PV(i)+f1) + a_PV(2)*sin(e2*x_PV(i)+f2) + a_PV(3)*sin(e3*x_PV(i)+f3) + a_PV(4)*sin(e4*x_PV(i)+f4) + a_PV(5)*sin(e5*x_PV(i)+f5) + a_PV(6)*sin(e6*x_PV(i)+f6) + a_PV(7)*sin(e7*x_PV(i)+f7) + a_PV(8)*sin(e8*x_PV(i)+f8) + a_PV(9)*sin(e9*x_PV(i)+f9);
end
Defining the problem
prob = optimproblem('ObjectiveSense', 'min');
prob.Objective = f_PV;
show(prob)
the values of e and f are defined - calculated
Request for help in compiling the code.
Categories
Find more on Surrogate Optimization in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!