How to get all the history of local solvers when using multi starting point search (MultiStart)
조회 수: 1 (최근 30일)
이전 댓글 표시
Hi, guys.
I want to save all the history of local solver on MultiStart.
I use the code for 'OutputFcn' based on the matlab documentation like
function stop = outfun(in,optimValues,state)
persistent history fhistory
stop = false;
switch state
case 'init'
history = [];
fhistory = [];
case 'iter'
% Concatenate current point and objective function
% value with history. in must be a row vector.
fhistory = [fhistory; optimValues.fval];
history = [history; in(:)']; % Ensure in is a row vector
case 'done'
assignin('base','optimhistory',history);
assignin('base','functionhistory',fhistory);
otherwise
end
end
My optimization problem setting is
options = optimoptions('fmincon', 'TolFun', 1e-8, 'TolX', 1e-8, 'Display', 'iter', 'OutputFcn', @outfun);
problem = createOptimProblem('fmincon',...
'x0', x0, 'objective', @objf_energy_density, 'lb', Lb, 'ub', Ub,...
'Aeq', Aeq, 'beq', beq, 'nonlcon', @conf, 'options', options);
ms = MultiStart;
[x, F, Exitflag, Output, allmins] = run(ms, problem, 20)
When I run the optimization, I can only get the history of 'the last local solver' on MultiStart, not all the history of local solvers.
Is there any way to get all the history of local solvers when using MultiStart?
Thank you for reading my question.
댓글 수: 0
채택된 답변
Walter Roberson
2021년 8월 13일
history = [];
fhistory = [];
Do not do those.
If you want to reset the entire history for another run, then
clear outfun
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Global or Multiple Starting Point Search에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!