Filter löschen
Filter löschen

Objective value until convergence

2 Ansichten (letzte 30 Tage)
Chetan Fadnis
Chetan Fadnis am 1 Sep. 2021
Kommentiert: Chetan Fadnis am 1 Sep. 2021
I am writing a code which repeat until the convergence is reached. What decides the convergence of a objective? And how to repeat the code? I am using while loop for it. Can anyone suggest me any other methods. Thanks.

Akzeptierte Antwort

Image Analyst
Image Analyst am 1 Sep. 2021
You decide it. Then just have a while loop where you get the "objective" as you call it. The loop will break once your "objective" is less than your tolerance/threshold:
loopCounter = 1;
maxIterations = 9999999; % Failsafe
objective = inf;
threshold = 10; % Whatever...
while loopCounter < maxIterations && objective > threshold
objective = GetNewObjective(); % However you do it....
loopCounter = loopCounter + 1;
end

Weitere Antworten (0)

Kategorien

Mehr zu System Composer finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by