Display resnorm at each iteration of lsqcurvefit?

I'm trying to display/store the value of resnorm for each iteration of the lsqcurvefit optimization, but it doesn't appear that the 'Display' value 'iter-detailed' produces that output.
Should it be giving me that information and another issue is going on, or is this not the way I should be trying to get that information?

Answers (1)

The residual is returned in the iterative display. For the trust-region-reflective algorithm (default), the heading is f(x). For the levenberg-marquardt algorithm, the heading is Residual. You can use either 'iter' or 'iter-detailed' for the Display option to obtain iterative display.
Alan Weiss
MATLAB mathematical toolbox documentation

1 Comment

Just a small point. The 'f(x)' or 'Residual' displayed values appear to really be resnorm^2.

Sign in to comment.

Categories

Asked:

on 29 Sep 2014

Commented:

on 30 Sep 2014

Community Treasure Hunt

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

Start Hunting!