Problem running linear fit y= m*x
Mostrar comentarios más antiguos
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.
Respuestas (1)
Star Strider
el 22 de Abr. de 2018
Use the mldivide,\ (link) function:
m = x(:)\y(:);
Categorías
Más información sobre Linear and Nonlinear Regression en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!