/* 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 BESSELS INTERPOLATION FORMULA in C. ------------------------------------ */ #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; // Calculated value for coressponding X. float h; ...
Comments
Post a Comment