computing error on least square fitting

Hi, i slove a system of equations (Ax-b) using least square method. i get an output with x like [2.5; -11.1; 0.8; 0.5]. the status flag is zero with system converging at iteration 2 and relative residual of 0.019. I want to calculate the error on my fit i--e with which certainity my solution is accurate. Can i claim that the residual which is norm of (Ax-b)/b means that my fit has an error of 1.9%?if not how can i calculate error on my fit?

2 comentarios

Alan Stevens
Alan Stevens el 15 de Ag. de 2020
0.019 is 1.9% not 19%.
Sumera Yamin
Sumera Yamin el 15 de Ag. de 2020
oh yes obviously, thx for correction

Iniciar sesión para comentar.

Respuestas (1)

Bruno Luong
Bruno Luong el 15 de Ag. de 2020
Can i claim that the residual which is norm of (Ax-b)/b
No make it
norm(A*x-b) / norm(b)

3 comentarios

Sumera Yamin
Sumera Yamin el 15 de Ag. de 2020
Many thanks for this correction. so with this "norm(A*x-b) / norm(b)" the statement that the "with residual of 0.019, fit has an error of 1.9%" is mathematically correct?
Bruno Luong
Bruno Luong el 15 de Ag. de 2020
If you want an unnambiguous mathematical statement, just state exactly what mean:
norm(A*x-b) / norm(b) is approximatively 0.019
At your place I would say in the speaking language
The fit has a relative l2-norm residual of 1.9%.
The fit error usually designates the difference between the true and the estimated fit (parameters). So to me you shouldn't use the word "error."
Sumera Yamin
Sumera Yamin el 15 de Ag. de 2020
Sorry i am not getting hang of it. " The fit has a relative l2-norm residual of 1.9%." how would i interpret this statement in terms of accuracy of my solution.
"The fit error usually designates the difference between the true and the estimated fit (parameters)" how can i calculate fit error?

Iniciar sesión para comentar.

Categorías

Preguntada:

el 13 de Ag. de 2020

Editada:

el 16 de Ag. de 2020

Community Treasure Hunt

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

Start Hunting!

Translated by