How to plot different lagrange interpolation graphs in one figure?

2 vues (au cours des 30 derniers jours)
BOA11
BOA11 le 19 Fév 2017
How do I plot L_0(x), L_1(x),....,L_4(x) in one figure?
I have gone completely blank on how to do this?
I am letting a=-3,b=3,n=4 and obviously i will be 4 but what do I let x be?
function y = LPoly(a,b,n,i,x)
L=ones(n,n+1);
for j = 1:(n+1) %
x(j) = a + (b-a)*((j-1)/n);
end %
for j=1:(n+1) %
if (i~=j);
L(i,:)=L(i,:).*(x-x(j))/(x(i)-x(j));
end %
end %
end % This is created to end the function.

Réponses (1)

Rackelyne Urbino
Rackelyne Urbino le 16 Sep 2019
how to plot this problem using Lagrange method?
x| 1, 2, 3, 4
y|1, 2, 0, 3
at x=2.5

Catégories

En savoir plus sur Scatter Plots dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by