Borrar filtros
Borrar filtros

Linear regression : estimate the parameters

2 visualizaciones (últimos 30 días)
amine&&
amine&& el 18 de Feb. de 2017
Comentada: Chad Greene el 18 de Feb. de 2017
Hello! How can I estimate the parameters (beta1 and beata2) of the following model : y=beta1+beta2*x+epsilon Thanks.

Respuesta aceptada

Chad Greene
Chad Greene el 18 de Feb. de 2017
Use polyfit.
p = polyfit(x,y,1);
beta1 = p(2);
beta2 = p(1);
  2 comentarios
amine&&
amine&& el 18 de Feb. de 2017
Editada: amine&& el 18 de Feb. de 2017
Thank Chad, but I want to know also information about the law following the resudiel (epsilon), the value of the coefficient R ^ 2 and other information.And how I can have confidence interval estimates for these parameters
Chad Greene
Chad Greene el 18 de Feb. de 2017
Check out the optional S output in polyfit, which has S.R and S.normr.

Iniciar sesión para comentar.

Más respuestas (0)

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by