Calculating covariance matrix from Jacobian using lsqcurvefit

56 visualizaciones (últimos 30 días)
I am trying to calculate the covariance matrix from the residuals vector and the Jacobian matrix, which are optional outputs of the lsqcurvefit function. I keep getting negative values for the diagonal (variance) values, but they should be strictly positive. Does this have something to do with the method that lsqcurvefit uses? I have attached sample data and a sample extPar structure (this usually gets generated other peices of code that call this function). The part of the code that I think is germane is here:
[par,resnorm,R,~,~,~,J] = lsqcurvefit(FID,par0,fitTime,fitData);
pCov = inv(J'*J)*((R'*R)./(numel(fitData) - numel(par)));
The fit function converges to a nice looking solution, am I doing something drastically wrong here?
I am fully aware that the statistics toolbox solves this easily, but unless you give my prof the cash to buy it for me, I'm stuck with this.
  1 comentario
David Wilson
David Wilson el 5 de Jun. de 2019
Editada: David Wilson el 5 de Jun. de 2019
Your analysis looks reasonable. The matrix J'*J is positive definite by definition, and so is its inverse. R'*R will be positive and so is nu = n-m. However numerical ill-conditioning could be the problem. Check the eigenvalues of inv(J'*J), they should be all +ve (or zero). What is the condition # or rcond of J'*J ?
Of course there are square root methods (SVD etc) to do this that avoid the possible ill-conditioning.

Iniciar sesión para comentar.

Respuesta aceptada

Alan Weiss
Alan Weiss el 6 de Jun. de 2019
This old documentation example might be of some use.
Alan Weiss
MATLAB mathematical toolbox documentation
  4 comentarios
Samuel Grauer
Samuel Grauer el 29 de Abr. de 2020
This documentation link appears to be broken. What was the solution?
Alan Weiss
Alan Weiss el 29 de Abr. de 2020
The documentation link is now broken permanently. Sorry. I think that I am not supposed to post the information, which was removed from the doc purposefully.
Alan Weiss
MATLAB mathematical toolbox documentation

Iniciar sesión para comentar.

Más respuestas (1)

Matt J
Matt J el 5 de Jun. de 2019
Editada: Matt J el 5 de Jun. de 2019
J'*J is only guaranteed to be positive semi-definite, which means some of the diagonals can be zero in ideal math. However, computers do not perform ideal math. Due to numerical precision limitations, the calculation can have small inaccuracies and give you slighly negative values in diagonals that are supposed to be zero.

Community Treasure Hunt

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

Start Hunting!

Translated by