Borrar filtros
Borrar filtros

Multiple linear regression coefficient calculation

5 visualizaciones (últimos 30 días)
Priyanka Nehra
Priyanka Nehra el 24 de Ag. de 2020
Comentada: Priyanka Nehra el 26 de Ag. de 2020
Hello,
I want to perform regression on three indepndent variables (x1, x2, x3 ) and one dependent variable (y). To perform y= b0+ b1.x1+b2*x2+ b3*x3 I need to calculate coefficient value b0 to b3. For which I am using b = regress(y,X). how to evaluate X using x1,x2,x3.

Respuestas (1)

J. Alex Lee
J. Alex Lee el 24 de Ag. de 2020
Assuming your data are in rows (y is a column vector), isn't that just
X=[ones(size(x1)),x1,x3,x3]
see
  3 comentarios
J. Alex Lee
J. Alex Lee el 24 de Ag. de 2020
do you have nan's in your x1, x2, x3, or y? how many observations do you have? you need at least 4 and possibly more in case of degeneracy.
Priyanka Nehra
Priyanka Nehra el 26 de Ag. de 2020
Got it. Thanks

Iniciar sesión para comentar.

Community Treasure Hunt

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

Start Hunting!

Translated by