In matalb I am implementing genetic algorithm using ga
. In a typical call to ga
like x = ga(nvars,@fitnessfunc)
when returns gives message on terminal specifying the reason for the termination of the genetic algorithm. A typical message is:
Optimization terminated: average change in the fitness value less than options.TolFun.
I want to turn off this message. I read the documentation but found nothing.
Any ideas?