How can I calculate the sum of the absolute error?

조회 수: 17 (최근 30일)
Mads Yar
Mads Yar 2021년 9월 23일
댓글: Mads Yar 2021년 9월 23일
Hello,
I am trying to do some exercises in Matlab, and i have trouble with calculating the absolute error and state it with 2 decimal places. You can see the exercise (the last one) in the image below.
I am done with sub task 1 and 2, where i got:
A_system_matrix = [1 -2 3; 1 -1 0; 1 0 -1; 1 1 0; 1 2 3] % System matrix A
y_vector = [0; 15; 25; 50; 110]
rref([A'*A,A'*y_vector]) % Using rowreducing
(A'*A)^(-1)*A'*y_vector % Using the equation stated in the text above
Can someone help me with using Matlab to calculate the sum of the absolute error stated in the exercise and then state it with 2 decimal places?
Thanks a lot!

채택된 답변

Fabio Freschi
Fabio Freschi 2021년 9월 23일
편집: Fabio Freschi 2021년 9월 23일
Please check the code below.
clear all, close all
% model
F = @(c,x)c(1)+c(2)*x+c(3)*(x.^2-1);
% data
xk = [-2 -1 0 1 2].';
yk = [0 15 25 50 110].';
% build matrix A
A = [F([1 0 0],xk) F([0 1 0],xk) F([0 0 1],xk)];
% least-square fit
c = (A.'*A)\(A.'*yk);
% error
err = sum(abs(yk-F(c,xk)));
fprintf('error = %.2f\n',err);
error = 24.00
% plot
x = (-2:.1:2).';
figure, hold on
plot(xk,yk,'o')
plot(x,F(c,x))
Three remarks
  • never ever use ^(-1) or inv to solve a linear system. Backslash operator is faster and more accurate.
  • the transpose operator is .' for the transpose. A simple ' is the complex conjugate transpose. In your case this is not affecting the result, but it is a good practice to keep the two operations separated.
  • Note that you can solve the least-square problem without explicitly write the normal equations using the backslash operator on your overdetermined system
c = A\yk;
  댓글 수: 3
Fabio Freschi
Fabio Freschi 2021년 9월 23일
편집: Fabio Freschi 2021년 9월 23일
Decimal places means digits after the decimal point.
The error formula in your OP is a scalar, so you should produce only one number
If my answer solves your problem, please accept it
Mads Yar
Mads Yar 2021년 9월 23일
Fair enough. Thank you very much for the detailed answer! Can i ask you about other exercises also? Else you can take a look at my other questions? It would be such a big help!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 MATLAB에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by