Genetic Algorithm fitness value

15 views (last 30 days)
Rudi Martin
Rudi Martin on 18 Jul 2013
Commented: Vahidreza on 29 Oct 2023
hello...
what fitness value is needed in GA optimization? the highest fitness? or the lowest fitness? or the best fitness?
I,m using MATLAB optimization tool for my GA problem, on the "plot function" option, I checked "best fitness".... when I started the optimization, it show "best fitness" and "mean fitness" , both of them has the same value...why is that?
on what condition this "best fitness" is?
thank you and sorry for my bad english
  1 Comment
Vahidreza
Vahidreza on 29 Oct 2023
In genetic algorithm, highest is desirable.

Sign in to comment.

Accepted Answer

Alan Weiss
Alan Weiss on 19 Jul 2013
As stated in the documentation, GA attempts to find a minimum of the fitness function.
As stated in the documentation, best fitness means the lowest fitness function among all members in the population. Mean fitness is the average over all members in the current population. If you have the same value for best and mean, then your population has little diversity, or your fitness function returns the same value for all members of the population.
Good luck,
Alan Weiss
MATLAB mathematical toolbox documentation

More Answers (0)

Products

Community Treasure Hunt

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

Start Hunting!