Single iteration with lsqnonlin (or fsolve), only compute new X0
2 次查看(过去 30 天)
显示 更早的评论
I want lsqnonlin (or fsolve) to only carry out one iteration, ie. compute the new X, and then stop. No further function evaluations.
So ideally I dont even want it to compute the new values of the objective function, but I definitely do not want extra function evaluations for the jacobian or first order optimality conditions at the new guess for X.
(My question is similar to an earlier question by me:
... but now function evaluations are even more expensive, and i want to use lsqnonlin, so i also dont know how to update X (which is easy for the Newton Raphson step if you know the Jacobian), so the suggestions made there dont help me for this case.
5 个评论
Torsten
2023-6-29
But you loose all information about the Jacobian in the iteration point and it will take much more effort in recomputing it in the next call to lsqnonlin than to continue the iterations.
采纳的回答
Matt J
2023-6-30
编辑:Matt J
2023-6-30
This seems to be a feasible workaround. So, the important thing to realize is that even though the iterative display says the Func-count=2, the call to the objective function is doing no significant work after the first function call, because the externally scoped stopflag has been raised by that point.
doOptimization()
function doOptimization
clc
[stopflag,r0,J0]=deal(0);
opts=optimoptions('lsqnonlin','Display','iter',...
'SpecifyObjectiveGradient',true,'MaxIterations',0);
[x,res]=lsqnonlin(@resid, 2,[],[],opts)
function [r,J]=resid(x)
if ~stopflag
r=(x-10)^2+1; J=2*(x-10); %normal evaluation of residual function
r0=zeros(size(r)); %important that these be zero (but unclear why).
J0=zeros(size(J));
stopflag=1;
else %do no work
r=r0; J=r0;
end
end
end
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!