In MATLAB, can we use ga with numerical constraint ?

It might be weird question, if i cannot perform the analytic function of constraint, i have only numerical constraint, can we use ga with this numerical constraints?
thank you very much. best regard!!

 採用された回答

Star Strider
Star Strider 2015 年 9 月 7 日

0 投票

If you want to put only upper and lower bounds on your parameters, you have to fill the unused arguments with ‘empty’ values using the empty matrix, [].
For instance, to only specify the upper and lower bounds:
LB = [ ... ]; % Vector Of Lower Bounds For Each Parameter
UB = [ ... ]; % Vector Of Upper Bounds For Each Parameter
x = ga(fitnessfcn,nvars,[],[],[],[],LB,UB)

2 件のコメント

chan trea
chan trea 2015 年 9 月 7 日
so if I have the numerical constraint such as nonlinear constraint. what can I handle with it?
Star Strider
Star Strider 2015 年 9 月 7 日
I’ve rarely used nonlinear constraints, usually only linear constraints and parameter bounds. I thought you wanted to impose parameter bounds.
Writing your nonlinear constraint function depends on what you want to do. I refer you to the documentation under Input Arguments for nonlcon. See specifically Vectorized Constraints.

サインインしてコメントする。

その他の回答 (1 件)

Greg Heath
Greg Heath 2015 年 9 月 7 日
編集済み: Walter Roberson 2015 年 9 月 7 日

0 投票

Of course.
Check the ga documentation:
help ga
doc ga
Hope this helps.
Thank you for formally accepting my answer
Greg

カテゴリ

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by