Using maximum of optimisation variable as an upper bound for another variable
Mostra commenti meno recenti
Hello
I am trying to minimise a cost function where the investment cost is the the maximum value of an optimisation variable multiplied by the cost e.g.
Total cost=Cost per kW*MaxkW
However, matlab doesn't seem to like using an optimisation variable as a boundary condition.
Any solutions?
Thanks
Michael
Risposta accettata
Più risposte (4)
Ted Shultz
il 21 Ago 2019
0 voti
you can do a bounded obtimization using this file from filecentral: fminsearchbnd
Bruno Luong
il 21 Ago 2019
0 voti
Not sure what you mean by "boundary condition" (there is no such thing in all optimization frameworks as far as I know), but take a look at fminmax
Naveen Venkata Krishnan
il 7 Ott 2019
0 voti
Hello Micheal,
Based on the question, I understood the problem in this way , please correct me if am wrong :
"You want to minimize a cost function in such a way that optimization variable lies close to its upper boundary region ".
If this the requirment one way to do it to confine the search space of the optimizer close to upper boundary ( like giving the values of upper - ub and lower boundary - lb of the optimzation variable around the maximum value of the optimization variable ) .
Another way is by using an enforcement operator, i think the following IEEE paper may be of some help to you reg this.
Michael-Allan Millar
il 7 Ott 2019
0 voti
1 Commento
Matt J
il 7 Ott 2019
Well, you don't have to "manually" pick. You would just do
[~,jmin]=min([Cost{:}]);
x=X{jmin};
Categorie
Scopri di più su Get Started with Optimization Toolbox in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!