How can I find the coeficients alpha, beta of the simple linear regression, using polyfit function?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Ihor
el 10 de Dic. de 2022
Respondida: Torsten
el 10 de Dic. de 2022
How can I find the coeficients alpha, beta for the X coordinates of the simple linear regression, using polyfit function?
0 comentarios
Respuesta aceptada
Torsten
el 10 de Dic. de 2022
x = (0:0.1:1).';
y = 3*x + 4 + 0.01*randn(numel(x),1);
polyfit(x,y,1)
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Linear and Nonlinear Regression en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!