Featured Post

Step Wise Project Planning

Planning is the most difficult process in project management. The framework described is called the Stepwise method to help to distinguis...

To implement Newton’s Forward Interpolation Formula.

To implement Newton’s Forward Interpolation Formula.

#include<stdio.h>
#include<conio.h>
#define MAXN 100
#define ORDER 4
main()
{
float ax[MAXN+1],ay[MAXN+1],
diff[MAXN+1][ORDER+1],
nr=1.0,dr=1.0,x,p,h,yp;
int n,i,j,k;
clrscr();
printf("Enter the value of n \n");
scanf("%d",&n);
printf("Enter the values in form x,y \n");
for(i=0;i<=n;i++)
scanf("%f %f", &ax[i], &ay[i]);
printf("Enter the values of x" "for which value of y is wanted \n");
scanf("%f", &x);
h=ax[1]-ax[0];
for(i+0;i<=n-1;i++)
diff[i][1]=ay[i+1]-ay[i];
for(j=2;j<=ORDER;j++)
for(i=0;i<=n-j;i++)
diff [i][j]=diff[i+1][j-1]-diff[i][j-1];
i=0;
while (!(ax[i]>x)) i++;
i-;
p= (x-ax[i])/h;
yp=ay[i];
for (k=1;k<=ORDER;k++)
{
nr *=p-k+1; dr *=k;
yp +=(nr/dr)*diff[i][k];
}
printf("When x= %6.1f, y= %6.2f  \n",x,yp);
}



Output



Newton’s Forward Interpolation Formula



Previous
Next Post »