Does the initial population matrix have to satisfy constraints genetic algorithm matlab

1 次查看(过去 30 天)
Is it possible to give MATLAB an initial population matrix which does not satisfy the constraints?
Will MATLAB be able to automatically weed out the childs which do not satisfy the constraints?
Thanks

回答(2 个)

Star Strider
Star Strider 2022-7-28
The initial population matrix does not have to satisfy the constraints.
Subsequent generations will, at least in my experience.
  2 个评论
Sravan Kumar Kanchari Bavajigari
Thanks for the response
Does that mean that MATLAB does not check if the initial population given by the user satisfies the constraints or not?
If it is not checking, is the initial population matrix I provide used as is to compute the objective function?
Star Strider
Star Strider 2022-7-28
My pleasure!
I am not certain that it checks initially, however in my experience, the entire matrix conforms to the constraints after the first iteration. I have not examined the code (assuming that is even possible) to determine if it checks before the first iteration.

请先登录,再进行评论。


Matt J
Matt J 2022-7-28
编辑:Matt J 2022-7-28
Will MATLAB be able to automatically weed out the childs which do not satisfy the constraints?
GA satisfies inequality and nonlinear constraints asymptotically. GA makes neither assumptions nor guarantees that the population members at any one generation will satisfy them.
Pure bounds are different. I believe ga will weed-out initial population members outside the bounds and produce children that satisfy them.
You can check all these things yourself by using a custom Output Function to retrieve the population matrix at the successive generations.

类别

Help CenterFile Exchange 中查找有关 Genetic Algorithm 的更多信息

产品


版本

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by