/* Program to implement GAUSS' BACKWARD INTERPOLATION FORMULA */ #include<stdio.h> #include<conio.h> #include<math.h> #include<process.h> #include<conio.h> void main() { int n; // no. of terms. int i,j; // Loop variables float ax[10]; // 'X' array limit 9 float ay[10]; // 'Y' array limit 9 float x; // User Query for what value of X float y=0; // Calculated value for coressponding X. float h; // Calc....
/* Program to implement NEWTON'S BACKWARD METHOD OF INTEROLATION. ---------------------------------------- */ #include<stdio.h> #include<conio.h> #include<math.h> #include<process.h> #include<conio.h> void main() { int n; // no. of terms. int i,j,k; // Loop variables float mx[10]; // 'X' array limit 9 float my[10]; // 'Y' array limit 9 float x; // User Query for what value of X float x0=0; // float y0; ...
Comments
Post a Comment