Matlab - INTERPOLACION POLINOMIO DE LAGRANGE

 
Vista:

INTERPOLACION POLINOMIO DE LAGRANGE

Publicado por INES (3 intervenciones) el 24/02/2018 21:02:50
Buenas, necesito resolver un problema gracias a Matlab.

Sea la función
f(x) =1/(1+x^2 ) x ∈ [-5;5]
Calcular y representar gráficamente el polinomio de interpolación de grado 14 con puntos de interpolación x_i equiespaciados. Tomar x_1 = -5 y x_15= 5.

Muchas gracias!
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder
Imágen de perfil de JOSE JEREMIAS CABALLERO
Val: 6.975
Oro
Ha mantenido su posición en Matlab (en relación al último mes)
Gráfica de Matlab

INTERPOLACION POLINOMIO DE LAGRANGE

Publicado por JOSE JEREMIAS CABALLERO (5917 intervenciones) el 25/02/2018 01:28:50
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
%Generate 50 points equally spaced along a sine curve in the interval [-5,5].
clear all
x = linspace(-5,5,50);
y = 1./(1+x.^2);
%Use polyfit to fit a 14th-degree polynomial to the points.
 
p = polyfit(x,y,14);
%Evaluate the polynomial on a finer grid and plot the results.
 
x1 = linspace(-5,5);
y1 = polyval(p,x1);
figure
plot(x,y,'o')
hold on
plot(x1,y1,'r')
hold off

Saludos
JOSE JEREMIAS CABALLERO
Asesor de Proyectos con Matlab
Servicios de programación matlab


http://matlabcaballero.blogspot.com
https://www.facebook.com/matlabcaballero
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar