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

2 views (last 30 days)
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

Answers (2)

Star Strider
Star Strider on 28 Jul 2022
The initial population matrix does not have to satisfy the constraints.
Subsequent generations will, at least in my experience.
  2 Comments
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 on 28 Jul 2022
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.

Sign in to comment.


Matt J
Matt J on 28 Jul 2022
Edited: Matt J on 28 Jul 2022
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.

Products


Release

R2022a

Community Treasure Hunt

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

Start Hunting!