Fitting with nlinfit
조회 수: 3 (최근 30일)
이전 댓글 표시
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
답변 (1개)
the cyclist
2012년 6월 21일
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
참고 항목
카테고리
Help Center 및 File Exchange에서 Regression에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!