Using polyfit for linear regression
Afficher commentaires plus anciens
Hi guys, how do i get linear regression (p) of this X1 and Y1 values using polyfit?
I try but the X1 and Y1 keep changes back, expected i get like this graph in help window

2 commentaires
KSSV
le 8 Oct 2020
Try clear all and run the code.
agung pratama
le 8 Oct 2020
Modifié(e) : agung pratama
le 8 Oct 2020
Réponses (1)
Bjorn Gustavsson
le 8 Oct 2020
Your code looks OK. Your problem might be that you expect a result identical to the figure from the documentation.
However, you ask for a linear fit in your call to polyfit - note the difference between your call and the call in the documentation!
your call:
p = polyfit(x,y,1);
Call in documentation:
p = polyfit(x,y,7);
You ask for a first-order polynomial, the call from the documentation is for a 7-order polynomial. That's the difference.
HTH
1 commentaire
agung pratama
le 8 Oct 2020
Catégories
En savoir plus sur Linear and Nonlinear Regression dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!