Linear Least Square fit

5 visualizaciones (últimos 30 días)
dariyoush shiri
dariyoush shiri el 25 de Sept. de 2020
Editada: dariyoush shiri el 25 de Sept. de 2020
Hi,
I am new here and I apologize for any mistakes.
I have a problem and I don't know how to solve it please guide me.it"s not a homework or anything.
a data is given and
and y values have variance-covariance
find the optimal parameters c1 and c2 for fitting function
calculate the variance-covariance matrix.
  2 comentarios
John D'Errico
John D'Errico el 25 de Sept. de 2020
Editada: John D'Errico el 25 de Sept. de 2020
This is a bit confusing.
Are you asking to compute a least squares fit, GIVEN a known covariance matrix on the vector y? If so, then you can use lscov.
Or are you asking to compute a least squares fit, and then estimate a covariance matrix for the parameters?
First, you showed a covariance matrix, but then you ask to compute a covariance matrix.
dariyoush shiri
dariyoush shiri el 25 de Sept. de 2020
sorry for the confusion, I guess to compute a least squares fit, and then estimate a covariance matrix for the parameters. I got this question like I posted. and this is my first atempt on fitting of data so I am confused as well.

Iniciar sesión para comentar.

Respuestas (1)

Alan Stevens
Alan Stevens el 25 de Sept. de 2020
For the linear least squares best fit, try:
>> M = [ones(3,1), x.^3];
>> C = M\y
C =
0.6667
0.5000
For the var-covar look up the MATLAB documentation on cov.
  1 comentario
dariyoush shiri
dariyoush shiri el 25 de Sept. de 2020
thank you for the answer, can you please tell me how can I calculate var-cov matrix it manually?

Iniciar sesión para comentar.

Categorías

Más información sobre Least Squares 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