How can I find the coeficients alpha, beta of the simple linear regression, using polyfit function?
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
How can I find the coeficients alpha, beta for the X coordinates of the simple linear regression, using polyfit function?
0 commentaires
Réponse acceptée
Torsten
le 10 Déc 2022
x = (0:0.1:1).';
y = 3*x + 4 + 0.01*randn(numel(x),1);
polyfit(x,y,1)
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Linear and Nonlinear Regression 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!