How to force ga and particleswarm to stop ONLY on max iterations reached
조회 수: 2 (최근 30일)
이전 댓글 표시
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
채택된 답변
Walter Roberson
2015년 9월 4일
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
hemanth chaduvula
2020년 6월 16일
Dear sir
If I set 'StallIterLimit' >= MaxIter then it shows following error
"Matrix dimensions must agree". Please solve my issue.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Particle Swarm에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!