Lagrange's Polynomial Interpolation

Interpolates a scalar or vector yp = f(xp) with given x and y = f(x) vectors and xp query
40 téléchargements
Mise à jour 13 juin 2021

Afficher la licence

Lagrange's Polynomial Interpolation based on weighted factors or Lagrange polynomials with sum = 1.
Example data:
x = [1 4 6 5]; % x vector
y = log(x); % y = f(x) vector
xp = 2 or xp = [2 3]; % x point(s) (scalar or vector) query
Use:
yp = Lagrangeinterp(x,y,xp)
to calculate
yp = f(x point) point(s) (scalar or vector)
[~,L] = Lagrangeinterp(x,y,xp)
to output the Lagrange polynomial cell array

Citation pour cette source

Roche de Guzman (2024). Lagrange's Polynomial Interpolation (https://www.mathworks.com/matlabcentral/fileexchange/94065-lagrange-s-polynomial-interpolation), MATLAB Central File Exchange. Récupéré le .

Compatibilité avec les versions de MATLAB
Créé avec R2021a
Compatible avec toutes les versions
Plateformes compatibles
Windows macOS Linux

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