Demo Weighted Nonlinear Regression (Statistics Toolbox)

In the Statistics toolbox Demo "Weighted Nonlinear Regression" the weights are normilized w = w / mean(w), but when applied to the data the square root of the normilized weights are used modelFunw = @(b,x) sqrt(w).*modelFun(b,x);
Why use the sqrt(w) and not just w? Should you always use sqrt(w)? The demo provided no explantion as to why sqrt(w) was used. Can someone provide an explantion?
I'm trying to apply this to the heavly weighted NHANES database.

 採用された回答

Tom Lane
Tom Lane 2012 年 3 月 16 日

0 投票

Weighted least squares means we want to minimize
sum over i of w(i) * {y(i)-yfit(i)}^2
You can write this by multiplying both y and yfit by sqrt(w), inside the thing in {} that is squared.

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeStatistics and Machine Learning Toolbox についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by