フィルターのクリア

Can I give a dependent constraint in Multiobjective Optimization using Genetic Algorithm

1 回表示 (過去 30 日間)
Merve
Merve 2014 年 7 月 19 日
編集済み: Matt J 2014 年 7 月 19 日
I have a multiobjective optimization problem, solved by GA. I need to give an upper bound to a variable which is dependent of another variable.
In other words,
I have 6 variables for optimization and I want to give a constraint/bound like:
x(1)< x(3)
Can I give such a constraint/bound?

採用された回答

Matt J
Matt J 2014 年 7 月 19 日
編集済み: Matt J 2014 年 7 月 19 日
It is a linear constraint
x(1)-x(3)<=0
Use the A,b input matrices to express it,
A=[1 0 -1 0 0 0];
b=0;

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGenetic Algorithm についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by