Fitting with nlinfit
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hi
I am fitting a function to some data using nlinfit in the following way
[b, r, J, COVB, mse] = nlinfit(v(:, 1), v(:, 2), model, b1, statset('Display','iter'));
My problem is that I want to find the uncertainties on the fitted parameters given in b1. Is it correct that the uncertainties on the final parameters in "b" are simply the square root of the diagonal elements of COVB?
Thanks in advance.
Best, Niles.
0 Kommentare
Antworten (1)
the cyclist
am 21 Jun. 2012
Yes. The diagonal elements of COVB are the (estimated) variances of each coefficient distribution, and their square roots are the standard deviations. So, assuming by "uncertainty" you mean one standard deviation, then you are correct.
0 Kommentare
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!