Lagrange polynomial

Lagrange form of the interpolation polynomial
1,9K téléchargements
Mise à jour 18 fév. 2010

Afficher la licence

% Polynomial Interpolation Problem: Lagrange Form
% x and y are vectors with the same dimensions
% Given n points: (x_k,y_k) k = 1,2,...n
% this function finds a polynomial P(x) of degree less
% than n such that P(x_k) = y_k
% --
% Remarks:
% The resulting polynomial is displayed in symbolic notation
% --
% Example
% x=[0 1 2 3 4 5 6 7];
% y=[4 -6 -1 16 -2 6 12 17];
% pol=show_polinterp(x,y);
% --
% x=[1 2 3 4 5 6 7];
% y=1+x.^3-x.^6;
% pol=show_polinterp(x,y);
%
% For evaluating pol, try
% subs(pol,x), it will return vector y
%--

Citation pour cette source

Ernesto Momox Beristain (2024). Lagrange polynomial (https://www.mathworks.com/matlabcentral/fileexchange/26724-lagrange-polynomial), MATLAB Central File Exchange. Récupéré le .

Compatibilité avec les versions de MATLAB
Créé avec R2008b
Compatible avec toutes les versions
Plateformes compatibles
Windows macOS Linux
Catégories
En savoir plus sur Graphics dans Help Center et MATLAB Answers
Remerciements

A inspiré : poly2traj

Community Treasure Hunt

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

Start Hunting!
Version Publié le Notes de version
1.0.0.0