What is the difference between the regress function and the lscov function?
이전 댓글 표시
I would like to perform multiple linear regression, and it seems that there are two options for MATLAB functions, regress and lscov. What is the difference between these two functions? Does regress also use least square's minimization?
답변 (1개)
Shashank Prasanna
2013년 7월 8일
0 개 추천
This is well explained in the documentation.
REGRESS and LSCOV use \ or mldivide to solve a least squares problem.
LSCOV:
댓글 수: 2
Nicole
2013년 7월 8일
Shashank Prasanna
2013년 7월 8일
You can open the function to see what goes on under the hood:
>> edit regress, edit lscov
Also you can scroll down in lscov documentation to the first example to see the mention of \ or mldivide.
Depending on what you want to do you may choose either. If you want to do simple linear regression go with regress. LSCOV can also do weighted least squares solutions for positive semidefinite covariance matrices. LSCOV can also be used for multivariate regression. Implementation details are covered in the documentation and the references.
카테고리
도움말 센터 및 File Exchange에서 Linear Regression에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!