フィルターのクリア

how I transfer a multi-objective optimization ( F1 F2) to a mono-objective optimization f ??

4 ビュー (過去 30 日間)
ahlem sellami
ahlem sellami 2018 年 4 月 3 日
回答済み: Alan Weiss 2018 年 4 月 3 日
my object is to maximize F1 and minimize F2 and formulating a single-objective optimization problem f help me please !!

回答 (1 件)

Alan Weiss
Alan Weiss 2018 年 4 月 3 日
Usually you would optimize
fun = @(x)-A*F1(x) + (1-A)*F2(x)
where A is a number from 0 through 1. When A = 0 this is minimizing F2. When A = 1 this is minimizing -F1, which is the same as maximizing F1. For other values of A, this is a weighted combination of the two objectives.
Good luck,
Alan Weiss
MATLAB mathematical toolbox documentation

カテゴリ

Help Center および File ExchangeMultiobjective Optimization についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by