Using maximum of optimisation variable as an upper bound for another variable
Mostrar comentarios más antiguos
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
Respuesta aceptada
Más respuestas (4)
Ted Shultz
el 21 de Ag. de 2019
0 votos
you can do a bounded obtimization using this file from filecentral: fminsearchbnd
Bruno Luong
el 21 de Ag. de 2019
0 votos
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
el 7 de Oct. de 2019
0 votos
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
el 7 de Oct. de 2019
0 votos
1 comentario
Matt J
el 7 de Oct. de 2019
Well, you don't have to "manually" pick. You would just do
[~,jmin]=min([Cost{:}]);
x=X{jmin};
Categorías
Más información sobre Get Started with Optimization Toolbox en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!