Fitting with nlinfit
显示 更早的评论
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.
回答(1 个)
the cyclist
2012-6-21
1 个投票
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.
类别
在 帮助中心 和 File Exchange 中查找有关 Regression 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!