A Parabolic Lagrangian Interpolating Polynomial Function

This function uses a non-linear interpolation (Lagrange) to estimate y given x, based on a set of ob
2.3K Downloads
Updated 23 Mar 2007

View License

This function uses a non-linear interpolation (Lagrange) to estimate y given x, based on a set of observed x-y points. Coordinates will be sorted based on the x-value of the pair. The x-value provided by the user to calculate y will be estimated using two points left and two points right of the provided x-value.

While this function will allow the user to prescribe any number of observed points to be used for the interpolation, caution should be used when more than four points are used in the equation. This function will induce oscillations such that accuracy of interpolation may diverge intermittently on linear types of data.

Again, similar to the Mann-Kendall trend test (i.e. ktaub.m), this function is written to maximize the capabilities of Matlab both in terms of intrinsic speed of the logic written here and utilizing native Matlab functions as much as possible without overtly complicating the process.

Essentially, there are 10 lines of code to perform the calculation. All the rest are more administrative in nature.

Also previously stated, the trade-off for not using any recursive logic does require more memory to be used given how arrays are manipulated in Matlab. However, unlike the trend test, this function is highly unlikely to use any excessive amounts of memory beyond what the user consumes with the data prior to being processed here. Unless, of course, the user specifies some ridiculous amount of points to be considered as part of
the interpolation.

If an error is trapped and returned, it's most likely caused by the user specifing an x value such that the provided x-y data does not have enough x-values to bracket the intended estimate, causing an EXTRAPOLATION.

Syntax:
estY = lagrange(datainXY, x, N);

where:
datainXY = (N x 2) double, Col1 = X, Col2 = Y
x = x-value used for locating estimate of Y
N = number of points in datainXY to use for interpolation

Requirements: None

Cite As

Jeff Burkey (2024). A Parabolic Lagrangian Interpolating Polynomial Function (https://www.mathworks.com/matlabcentral/fileexchange/14398-a-parabolic-lagrangian-interpolating-polynomial-function), MATLAB Central File Exchange. Retrieved .

MATLAB Release Compatibility
Created with R2007a
Compatible with any release
Platform Compatibility
Windows macOS Linux
Categories
Find more on Descriptive Statistics in Help Center and MATLAB Answers

Community Treasure Hunt

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

Start Hunting!
Version Published Release Notes
1.0.0.0