What is the difference between the regress function and the lscov function?
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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?
0 commentaires
Réponses (1)
Shashank Prasanna
le 8 Juil 2013
This is well explained in the documentation.
REGRESS and LSCOV use \ or mldivide to solve a least squares problem.
LSCOV:
2 commentaires
Shashank Prasanna
le 8 Juil 2013
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.
Voir également
Catégories
En savoir plus sur Linear Regression dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!