How to plot the best individual fitness in GA?

18 views (last 30 days)
I would like to ask if there is a way to plot the best individual fitness value instead of its score vs the generation number, when using the GA with integer and non-linear constraints.
  1 Comment
Chaman Dewangan
Chaman Dewangan on 18 May 2020
I search and find hint in mathworks.com
options = optimoptions('ga','ConstraintTolerance',1e-6,'PlotFcn', @gaplotbestf);

Sign in to comment.

Accepted Answer

Alan Weiss
Alan Weiss on 29 Dec 2014
You can use an output function or plot function to plot anything you want. See this example of a custom plot function in ga and the details of the plot function syntax and State Structure. The state.Population field contains the current population, and you can compute the fitness value for members of the population within the plot function.
Alan Weiss
MATLAB mathematical toolbox documentation

More Answers (0)

Community Treasure Hunt

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

Start Hunting!