How to plot the best individual fitness in GA?

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

I search and find hint in mathworks.com
options = optimoptions('ga','ConstraintTolerance',1e-6,'PlotFcn', @gaplotbestf);

Sign in to comment.

 Accepted Answer

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)

Asked:

on 28 Dec 2014

Commented:

on 18 May 2020

Community Treasure Hunt

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

Start Hunting!