How to find uncertainties of estimated parameters in Levenberg- Marquardt algorithm

Hello I have used Levenberg-Marquardt algorithm in 3 parameter problem but I unable to estimate uncertainties associated with it, Please help me in this regard

Answers (2)

If you have the statistics toolbox, use nlinfit together with nlparci and nlpredci.
Best wishes
Torsten.

4 Comments

Then you will have to consult the literature cited for nlparci and nlpredci on how confidence intervals for the parameters are to be computed.
See e.g.
Best wishes
Torsten.

Sign in to comment.

You can use Laplace's approximation.
After Levenberg Marquardt (LM) has converged, take the (negative of the) Hessian at that point. This is equal to the precision matrix (inverse of covariance matrix) for a multivariate Gaussian distribution over your parameters.
The location parameter of this distribution is of course just the solution provided by LM.
Note that you do not want to approximate the Hessian with the Jacobian!

Asked:

on 4 Nov 2015

Answered:

on 9 Jul 2025

Community Treasure Hunt

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

Start Hunting!