Weighted least squares (WLS) for linear system of equation

조회 수: 24 (최근 30일)
Sebastian Ciuban
Sebastian Ciuban 2015년 1월 13일
편집: mahmood hassan 2018년 11월 10일
Hello there, I have a issue in building the Weighted Matrix for my next system of equations:
2x+y=2
-x+3y=1
x+2y=3
A=2 1 b=2
-1 3 1
1 2 3
And I can solve this by means of OLS But my means of WLS I have this formulas from a book:
b=Ax+e
e=b-Ax
C=e*e' % (covariance_matrix)
W=C^-1 % (weight matrix)
But the thing is det(C)=0 and and thus, the inverse it does not exist and I don't think the last 2 formulas for C and W are correct. Can someone explain to me step by step how to build the Weight Matrix just having the matrix A and b? I know this my be too simple but I need a little bit of guidance.
Thank you in advance
*NOTE: 1). I have read the theory regarding WLS and its rational approach. But I understand faster with a practical example, step by step.
2). I would like not to use any matlab-built in functions (for the sake of learning).

답변 (2개)

Wenwen He
Wenwen He 2016년 8월 8일
Hello,have you solved this question?
  댓글 수: 2
Sebastian Ciuban
Sebastian Ciuban 2016년 8월 8일
편집: Sebastian Ciuban 2016년 8월 8일
Well some time passed since I have put the question and things got more clear regarding Estimation Theory. I don´t think my question is quite correct but if you have an answer I would be more than happy to accept it to this topic :).
Wenwen He
Wenwen He 2016년 8월 8일
As a matter of fact, I just had the same problem: I calculated the weight matrix by the way of {e=b-Ax; C=e'*e; W=C^-1; }. But, a lot of inf values appear in the matrix W. So, I don't know how to calculate the matrix W. Have you found some good answer about how to obtain the correct weight matrix? If you have found, could you tell me that? Thank you very much!

댓글을 달려면 로그인하십시오.


mahmood hassan
mahmood hassan 2018년 11월 10일
편집: mahmood hassan 2018년 11월 10일
Hi, According to Wikipedia the Weighted least squares (WLS), is a generalization of ordinary least squares and linear regression in which the errors covariance matrix is allowed to be different to an identity matrix. WLS is also a specialization of generalized least squares in which the above matrix is diagonal. https://en.wikipedia.org/wiki/Weighted_least_squares
if you use this it will not goes to the singularity
  • b=Ax+e
  • e=b-Ax
  • C=diag(e*e') % (covariance_matrix)
  • W=diag(C)^-1 % (weight matrix)

카테고리

Help CenterFile Exchange에서 Regression Tree Ensembles에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by