Gaussian forward Interpolation formula

バージョン 1.0.0.0 (1.5 KB) 作成者: Aman Gaur
This MATLAB code computes the desired data point within a given range.
ダウンロード: 800
更新 2013/7/19

ライセンスの表示

Interpolation refers to the process of creating new data points given within the given set of data.The above MATLAB code computes the desired data point within the given range of discrete data sets using the formula given by Gauss.
The gaussian interpolation comes under the Central Difference Interpolation Formulae which differs from Newton's Forward interpolation formula formula.

Suppose we are given the following value of y=f(x) for a set values of x:

X: x0 x1 x2 ………. xn
Y: y0 y1 y2 ………… yn

Then the process of finding the value of y corresponding to any value of x=xi between x0 and xn is called interpolation. Thus interpolation is the technique of estimating the value of a function for any intermediate value of the independent variable while the process of computing the value of the function outside the given range is called extrapolation. However, extrapolation is beyond the scope of this code.

Suppose that the function y=f(x) is tabulated for the equally spaced values x = x0, x = x0+h , x = x0+2h ,……… x = x0+nh, giving y= y0 , y1, y2,……, yn. . To determine the value of f(x) or f’(x) for some intermediate values of x, the following three types of differences are found useful.
1. Forward Difference
2. Backward difference
3. Central Difference
The common Newton’s forward formula belongs to the Forward difference category. However , the Gaussian forward formula formulated in the attached code belongs to the central difference method.
Gauss forward formula is derived from Newton’s forward formula which is:

Newton’s forward interpretation formula:

Yp=y0+p.Δy0+ p(p-1)Δ2y0/(1.2) + p(p-1)(p-2)Δ3y0/(1.2.3)+….
We have ,
Δ2y0 – Δ2y-1=Δ3y-1
i.e. Δ2y0=Δ2y-1 + Δ3y-1
Similarly,
Δ3y0=Δ3y-1 + Δ4y-1
Δ4y0=Δ4y-1+Δ5y-1 etc..

Also, Δ3y-1-Δ3y-2=Δ4y-2
I.e. Δ3y-1=Δ3y-2+Δ4y-2

Similarly Δ4y-1=Δ4y-2+Δ5y-2 etc..

Substituting for Δ2y0, Δ3y0, Δ4y0….. from (2),(3),(4)….. in (1), we get
Yp=y0+ pΔy0 + (p(p-1).(Δ2y-1+Δ3y-1))/(1.2) + (p.(p-1).(p-2)(Δ3y-1+ Δ4y-1))/(1.2.3)
+ (p.(p-1)(p-2)(p-3)(Δ4y-1+Δ5y-1))/(1.2.3.4)+……..

Hence yp=y0 + pΔy0 + (p(p-1)Δ2y-1 )/2!+ ((p+1)p(p-1)Δ3y-1)/3! + ((p+1)p(p-1)(p-2)Δ4y-2)/4!+……… using (5)……….

Which is then called gauss’s forward interpolation formula.

One more representation of this formula is in the central difference notation , this formula will be

yp=y0+ pδy1/2 + (p(p-1)δ2y0)/2! + ((p+1)p(p-1)δ3y1/2)/3! + ((p+1)p(p-1)(p-2)δ4y0)/4!+……

These interpolation formulae are applicable for interpretation near the beginning and end of tabulated values.
However, the gaussian forward formula are best suited for interpolation near the middle of the table.

The coefficients in the central difference formula such as that of gauss are smaller and converge faster than those in Newton's formulae. Therefore, as much, whenever possible, central difference formulae should be used in preference to Newton's formulae.
The above code starts with asking the no. of data. The input data is denoted by x.
The difference between the two consecutive values of x is denoted by h.
One more parameter used in this formula is p, which is computed by the following formula

p=(x-x0)/h
The corresponding value of y is also asked from the user.
After entering this values, the code computes the parameters h and p automatically and displays the result on calling.

The final desired answer is stored in a variable named ans and is displayed on calling in MATLAB window.
An example :-
No. of variables =5
The x values are :- 21 , 25 , 29 , 33 ,37 and the corresponding values of y are given by 18.478 , 17.8144 ,
17.8144 , 16.3432 and 15.5154.

x p yp Δyp Δ2yp Δ3yp Δ4yp
21 -2 18.478 -0.6564 -0.0510 -0.0074 -0.0022
25 -1 17.8144 -0.7074 -0.0564 -0.0076
29 0 17.8144 -0.7638 -0.0640
33 1 16.3432 --0.8278
37 2 15.5154

On running the code for the desired value of y30, we get the following values :-
h=4
p=0.25
ans=16.9216

引用

Aman Gaur (2024). Gaussian forward Interpolation formula (https://www.mathworks.com/matlabcentral/fileexchange/42741-gaussian-forward-interpolation-formula), MATLAB Central File Exchange. 取得済み .

MATLAB リリースの互換性
作成: R2009a
すべてのリリースと互換性あり
プラットフォームの互換性
Windows macOS Linux
カテゴリ
Help Center および MATLAB AnswersInterpolation についてさらに検索
タグ タグを追加

Community Treasure Hunt

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

Start Hunting!
バージョン 公開済み リリース ノート
1.0.0.0