Print more iteration detail in GA code

16 次查看(过去 30 天)
I have written a GA code, and I want to print out the variable's value at each iteration. Would you please let me know what command should I use for this matter? Thank you.

采纳的回答

Alan Weiss
Alan Weiss 2018-11-1
Take a look at Custom Output Function for Genetic Algorithm. This enables you to get all population members at each iteration (if you modify the example just a bit).
Unless all you want is the best fitness function value at each iteration, in which case all you need to do is set the 'Display' option to 'iter'.
Alan Weiss
MATLAB mathematical toolbox documentation
  2 个评论
Maryam
Maryam 2018-11-1
Thanks for your answer Alan! I don't want to get the population for each iteration! I used 'Display' option with 'iter', but that just shows the variables value in a graph! I actually want MATLAB to print the values out so I can have the exact numbers for each variable at each iteration!
Alan Weiss
Alan Weiss 2018-11-1
Again, I'm not sure that I understand exactly what you want. At each iteration there is a population. Perhaps what you want is the best individual at each iteration, the one that gives the lowest fitness function. In that case, look at the Custom Output Function example and just take bestx (which is a row vector containing the variables that I believe you want); you don't need the rest of the stuff for plotting and for saving the whole population.
Alan Weiss
MATLAB mathematical toolbox documentation

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Solver Outputs and Iterative Display 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by