how to solve an optimization with a function in objective function
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
I need to do a non-convex non-linear integer programming optimization. The thing is I have a function in my objective function.
The objective function is as follows:
max
where
and
are my variables for each k, t, and p. Function f is as follows:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/994085/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/994090/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/994095/image.png)
function f(F_p,n):
f_1 = F_p;
f_0 = F_p;
for i = 1:n
f_1 = f_1*f_0/(f_1*f_0 + (1-f_1)*(1-f_0));
end
and it returns f_1. There are some constraints about the lower and upper bound and also the relation between the varibales that I have not mentioned here.
My question is can I implement and solve this using matlab Opti solver? And how? :)
0 Kommentare
Antworten (1)
Siehe auch
Kategorien
Mehr zu Get Started with Optimization Toolbox finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!