defining step size for levenberg-marquardt optimisation
Show older comments
I am trying to define a starting step size for levenberg-marquardt optimisation as following. However, matlab throws an error when it executes this line. Please suggest what am I doing wrong. Best Wishes.
options = optimoptions(@lsqcurvefit,'Algorithm',{'levenberg-marquardt',0.001},...
'Display','iter','Diagnostics','on','FunValCheck','on',...
'ScaleProblem','Jacobian','MaxIter',1e22,'TolFun',1e-22,...
'TolX',1e-22,'MaxFunEvals',1e22);
Error using optimoptions (line 114)
Too many outputs requested. Most likely cause is missing [] around left hand side that has a comma separated list expansion.
Accepted Answer
More Answers (0)
Categories
Find more on Solver Outputs and Iterative Display in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!