Problem running linear fit y= m*x
Afficher commentaires plus anciens
how do you run a linear fit for y= m*x. I don't want to use polyfit(x,y,1) as this gives y=mx+b.
Réponses (1)
Star Strider
le 22 Avr 2018
Use the mldivide,\ (link) function:
m = x(:)\y(:);
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!