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!