How to get initial and successive populations in GA optimization ?

3 次查看(过去 30 天)
I want to use GA in integartion with external simulation software. How can I access the initial population created by GA as well as suceesive populations so that these can be send to the external simulation software to evaluate objective function?

采纳的回答

Shreeya
Shreeya 2024-1-15
The “InitialPopulationMatrix” parameter of the “optimoptions’ can be used to create an initial population.
options = optimoptions('ga', InitialPopulationMatrix, []);
You can refer to the population options of this function in this link:
Further, to access the population being generated in each iteration, refer the page linked below:
The custom output function plots the population values being generated with each iteration and saves it to the base workspace which can be used in external simulation software.

更多回答(0 个)

类别

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

产品


版本

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by