Can you help me with the MATLAB code?

1 visualización (últimos 30 días)
Mads Yar
Mads Yar el 23 de Sept. de 2021
Respondida: KSSV el 23 de Sept. de 2021
I have been given the following information
I have found the values of a, b and c with MATLAB. I got the values (a, b, c) = (32.5, 25.5, 7.5) through the normal equation and least-squares fit on the data.
My question is: How do i calculate the absolute error below in MATLAB?
I am supposed to state it with two decimal places:

Respuesta aceptada

KSSV
KSSV el 23 de Sept. de 2021
LEt a, b, c be your coefficients and (x,y) be your data.
y0 = y ; % given data
y1 = a+b*x+c*(x.^2-1) ; % approximated data
abs_error = sum(abs(y0-y1)) ;

Más respuestas (0)

Categorías

Más información sobre Get Started with MATLAB en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by