Using maximum of optimisation variable as an upper bound for another variable
2 views (last 30 days)
Show older comments
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
0 Comments
Accepted Answer
More Answers (4)
Ted Shultz
on 21 Aug 2019
you can do a bounded obtimization using this file from filecentral: fminsearchbnd
0 Comments
Bruno Luong
on 21 Aug 2019
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
0 Comments
Naveen Venkata Krishnan
on 7 Oct 2019
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.
0 Comments
Michael-Allan Millar
on 7 Oct 2019
1 Comment
Matt J
on 7 Oct 2019
Well, you don't have to "manually" pick. You would just do
[~,jmin]=min([Cost{:}]);
x=X{jmin};
See Also
Categories
Find more on Get Started with Optimization Toolbox in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!