How to use regression?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Ghazal Hnr
le 12 Mar 2017
Commenté : Walter Roberson
le 12 Mar 2017
I have 2 vectors and i want to obtain a correlation between them like y=ax+b by using regression, but i don't know how to use this code. would anyone help me with this?
0 commentaires
Réponse acceptée
Walter Roberson
le 12 Mar 2017
coeffs = polyfit(FirstVector, SecondVector, 1);
Then coeffs(1) will be your a, and coeffs(2) will be your b.
4 commentaires
Walter Roberson
le 12 Mar 2017
Note that when I say "a different way of writing the same thing", I mean that polyfit() really does construct those matrices and use the \ operator.
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Descriptive Statistics dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!