Using the \ operator to fit a parabolic curve to a data set.

23 visualizaciones (últimos 30 días)
%for a certain file, the first column is the independent variable and
%second is the dependent variable.
C=xlsread('super.xlsx');
h=C([2:13],1);
x=[h ones(length(h),1)] %I use a column of ones in order to simulate a constant secondary dependent variable.
y=C([2:13],2); % the dependent variable
V=x\y %This command only gives me one value, that is just a linear fit. How do I make this use a parabolic fit instead?

Respuesta aceptada

Torsten
Torsten el 20 de Jul. de 2021
Replace x by
x = [h.^2 h ones(length(h),1)]
  2 comentarios
Tesfaye Girma
Tesfaye Girma el 20 de Jul. de 2021
yhat = (M'*M)\(M'*x);
John D'Errico
John D'Errico el 20 de Jul. de 2021
@Tesfaye Girma - NO. Don't tell people to use an inferior method to estimate a linear regression model.
In MATLAB, it is correct to use this:
coef = M\x;
Use of the normal equations (what you showed) will cause significantly increased sensitivity to poorly conditioned problems. That scheme will completely fail to work on many solvable problems.

Iniciar sesión para comentar.

Más respuestas (1)

Simon Chan
Simon Chan el 20 de Jul. de 2021

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!

Translated by