Skip lsqnonlin run if error
1 次查看(过去 30 天)
显示 更早的评论
Hi guys. I am using lsqnonlin for some fitting, and I am running a loop where I change the initial parameter values to determine the best ones based on the residuals; this is because the fitting is not as robust as I expected and it gives different results for different initial parameters (I would love to hear a suggestion for this as well...!). So, for some combinations of parameters it fails and gives this error:
Error using levenbergMarquardt (line 16)
Objective function is returning undefined values at initial point. lsqnonlin cannot continue.
How can I make the process recognize the error, skip this run and proceed with finishing the loop?
Thanks
0 个评论
采纳的回答
Alan Weiss
2017-6-28
If you have Global Optimization Toolbox, then use MultiStart to run lsqnonlin several times. MultiStart automatically continues if it encounters NaN or Inf values.
Otherwise, it is not too hard to program up this kind of functionality for yourself. If you have finite bounds on all parameters, you can repeatedly use
x0 = lb + rand(size(lb)).*(ub - lb)
as initial points. You can use a try/catch statement to continue after encountering an error.
Good luck,
Alan Weiss
MATLAB mathematical toolbox documentation
更多回答(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!