Optimization of 4 cost functions altogether with specified constraints
1 回表示 (過去 30 日間)
古いコメントを表示
How can I optimize 4 simple cost functions altogether with specified constraints on each of them using MATLAB and optimization toolbox?
6 件のコメント
Matt J
2013 年 6 月 21 日
編集済み: Matt J
2013 年 6 月 21 日
Maybe I wasn't clear. Do you mean you want to calculate
[argmin(f1), argmin(f2), argmin(f3), argmin(f4)]
without using a for-loop? If instead, you're looking for a single x that simultaneously minimizes f1(x), f2(x), f3(x), and f4(x), then see Jan's Answer.
回答 (1 件)
Jan
2013 年 6 月 21 日
編集済み: Jan
2013 年 6 月 21 日
You cannot optimize for 4 different criteria at the same time. An optimization requires a scalar cost function, and this is related to the nature of the term "optimimum".
If you want to consider 4 parameters, you still need a norm to create a scalar: E.g. a weighted or unweighted sum(), max() or mean(). Using max() is not smooth anymore and the optimization method need to consider this explicitly.
Example:
Find the price of an article, which maximizes the income of the sellers and minimizes the costs for the buyers simultaneously.
This must fail for obvious reasons.
参考
カテゴリ
Help Center および File Exchange で Get Started with Optimization Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!