How to force ga and particleswarm to stop ONLY on max iterations reached

5 ビュー (過去 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)

採用された回答

Walter Roberson
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 件のコメント
JMP Phillips
JMP Phillips 2015 年 9 月 4 日
編集済み: JMP Phillips 2015 年 9 月 4 日
For particle swarm found I have to set 'StallIterLimit' >= MaxIter which effectively guarantees tolerance stopping condition is never reached. Same for StallGenLimit in GA.
hemanth chaduvula
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 ExchangeParticle Swarm についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by