Calculating model error

I am trying to calculate model error by calculating the model covariance matrix.
My data consists of a time series measurement, and I am fitting the data to a multi-exponential decay function:
Sum(Mi*exp(-t/Ai)), where A is a predetermined range of values.
The way I have been trying to go about this is by calculating the matrix, G:
for i=1:length(A) for j=1:length(t) G(j,i) = exp(-t(j)/A(i)); end end
Then I calculate the with the variance of the data, dvar:
CovM = dvar^2*inv(G'*G);
Matlab doesn't like me using inv here, it tells me to use:
CovM = dvar^2/(G'*G);
What I get is a CovM that is very singular, and has a very small correlation coefficient.
What am I doing wrong here. I am pretty sure my data is not the issue, as device I used is brand new.

1 个评论

One way you can get singularity is by having too many terms in your fit. Try using just one or two first, and then add more terms.

请先登录,再进行评论。

回答(1 个)

John D'Errico
John D'Errico 2020-10-6

0 个投票

Even though you may THINK your data is good, the problem surely lies in your model. That it is a new device is not even relevant here. Sums of exponential models are notoriously poorly conditioned when you have too many terms. Worse, if you choose poor starting values for the parameters, you will again have issues with the model, again resulting in a singular matrix.

类别

帮助中心File Exchange 中查找有关 Mathematics 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by