How to terminate GA when a criteria is reached

6 visualizaciones (últimos 30 días)
Sam136
Sam136 el 18 de Ag. de 2015
Comentada: Mahmoud Elbeltagy el 10 de Ag. de 2021
I am using GA to find a local min of a function. I want to terminate iterations when fitness functions reaches a preset value.
x = ga(@AECMS,nvars,[],[],[],[],LB,UB,[],options);
function socf=AECMS(s)
sim HYB_VEH
socf=(soc_sim-soc_des)^2
It should stop when socf<A. BTW, this is different from TolFun or TolX

Respuesta aceptada

Walter Roberson
Walter Roberson el 18 de Ag. de 2015
Use an options structure with an output function and set the state StopFlag to a non-empty string http://www.mathworks.com/help/gads/genetic-algorithm-options.html#f17837
  7 comentarios
Sam136
Sam136 el 20 de Ag. de 2015
Perfect. It finally worked. You were right. The output function should have three outputs.
Mahmoud Elbeltagy
Mahmoud Elbeltagy el 10 de Ag. de 2021
Amazing! @Walter Roberson, thanks a lot!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Genetic Algorithm en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by