Problem running linear fit y= m*x
Ältere Kommentare anzeigen
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.
Antworten (1)
Star Strider
am 22 Apr. 2018
Use the mldivide,\ (link) function:
m = x(:)\y(:);
Kategorien
Mehr zu Linear and Nonlinear Regression finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!