Interpolación Polinomial
Interpolación Polinomial
Interpolación Polinomial
KAREN ACUÑA ARROYO
LUIS AVILA MADRID
KARINA MENDOZA CAJAR
LINA RANGEL ORTEGA
ING. JOSE LUIS CONSUEGRA GONZALES
ESTUDIANTES
INTRODUCCIÓN
ERROR DE INTERPOLACIÓN
EJEMPLO TEÓRICO
• La viscosidad dinámica del agua se relaciona con la temperatura (T) de la siguiente manera:
T °C 0 5 10 20 30 40
T °C 0 5 10 20 30 40
ᶙ۰ 1,787 1,519 1,307 1,002 0,796 0,653
FORMULA
+ + +
REMPLAZAMOS LOS DATOS
X = 7.5
+ (0,796) = 1.407109
ALGORITMO EN OCTAVE
producto=ys(i);
for j=1: n
if i~=j
producto=producto*(x-xs(j)) /(xs(i)-xs(j));
end
end
% sumar cada termino
yi=yi+producto;
% yi=vpa (yi)
end
yi=vpa (yi)
VENTAJAS
https://es.khanacademy.org/math/multivariable-calculus/applications-of-multivariable-derivatives/constr
ained-optimization/a/lagrange-multipliers-examples
https://matematicasn.blogspot.com/2012/09/multiplicadores-de-lagrange-pdf.html
https://www.ugr.es/~mibanez/ejemplos/interpolacion
file:///C:/Users/Lina%20Rangel/Downloads/Tema3CN10809.pdf
http://test.cua.uam.mx/MN/Methods/Interpolacion/Lagrange/Lagrange.php
https://www.youtube.com/watch?v=gjULgRUbMGA&t=287s
https://www.youtube.com/watch?v=rLGEYbj-Qo8
https://es.slideshare.net/_REYNA_/interpolacin-polinmica-de-lagrange
Gracias…