How to force ga and particleswarm to stop ONLY on max iterations reached
    6 vues (au cours des 30 derniers jours)
  
       Afficher commentaires plus anciens
    
    JMP Phillips
      
 le 4 Sep 2015
  
    
    
    
    
    Commenté : hemanth chaduvula
 le 16 Juin 2020
            ga and particleswarm has a few stopping conditions I don't want it to stop running once tolerance is met, but continue for max iterations. Tried to do this by setting TolFun to 0 but doesn't work.
options = optimoptions('particleswarm','OutputFcns',@mypsoutputfun, 'MaxIter',MaxGeneration_fun,'SwarmSize',n_pop_ps,'Display','none','StallTimeLimit', 1,'TolFun', 0)
0 commentaires
Réponse acceptée
  Walter Roberson
      
      
 le 4 Sep 2015
        I would suggest an experiment of setting the stall limit fairly high. You could try inf but that might not be accepted. Memory might be allocated for holding this many values so you might not be able to get too wild.
2 commentaires
  hemanth chaduvula
 le 16 Juin 2020
				Dear sir 
             If I set 'StallIterLimit' >= MaxIter then it shows following error
            "Matrix dimensions must agree". Please solve my issue.
Plus de réponses (0)
Voir également
Catégories
				En savoir plus sur Particle Swarm dans Help Center et File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!