A Parabolic Lagrangian Interpolating Polynomial Function

버전 1.0.0.0 (2.93 KB) 작성자: Jeff Burkey
This function uses a non-linear interpolation (Lagrange) to estimate y given x, based on a set of ob
다운로드 수: 2.3K
업데이트 날짜: 2007/3/23

라이선스 보기

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

인용 양식

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. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R2007a
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Descriptive Statistics에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!
버전 게시됨 릴리스 정보
1.0.0.0