

Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
This is solution to one of problems in Numerical Analysis. This is matlab code. Its helpful to students of Computer Science, Electrical and Mechanical Engineering. This code also help to understand algorithm and logic behind the problem. This code includes: Neville, Iterated, Interpolating, Algorithm, Evaluate, Polynomial, Distinct, Numbers, Table, Function, Choice
Typology: Exercises
1 / 3
This page cannot be seen from the preview
Don't miss anything!


% To evaluate the interpolating polynomial P on the % (n+1) distinct numbers x(0), ..., x(n) at the number x % for the function f: % % INPUT: numbers x(0),..., x(n) as XX(0),...,XX(N); % number x; values of f as the first column of Q % or may be computed if function f is supplied. % % OUTPUT: the table Q with P(x) = Q(N+1,N+1). syms('TRUE', 'FALSE', 'OK', 'FLAG', 'N', 'I', 'XX', 'Q', 'A', 'NAME'); syms('INP', 'X', 'D', 'J', 'OUP','x','s'); TRUE = 1; FALSE = 0; fprintf(1,'This is Nevilles Method.\n'); OK = FALSE; while OK == FALSE fprintf(1,'Choice of input method:\n'); fprintf(1,'1. Input entry by entry from keyboard\n'); fprintf(1,'2. Input data from a text file\n'); fprintf(1,'3. Generate data using a function F\n'); fprintf(1,'Choose 1, 2, or 3 please\n'); FLAG = input(' '); if FLAG == 1 | FLAG == 2 | FLAG == 3 OK = TRUE; end end if FLAG == 1 OK = FALSE; while OK ~= TRUE fprintf(1,'Input n\n'); N = input(' '); if N > 0 OK = TRUE; XX = zeros(1,N+1); Q = zeros(1,N+1;1,N+1); for I = 0:N fprintf(1,'Input X(%d) and F(X(%d)) ', I, I); fprintf(1,'separated by a space\n'); XX(I+1) = input(' '); Q(I+1,1) = input(' '); end else fprintf(1,'Number must be a positive integer\n'); end end end if FLAG == 2 fprintf(1,'Has a text file been created with the data in two columns?\n'); fprintf(1,'Enter Y or N\n'); A = input(' ','s'); if A == 'Y' | A == 'y'
fprintf(1,'Input the file name in the form - '); fprintf(1,'drive:\name.ext\n'); fprintf(1,'For example: A:\DATA.DTA\n'); NAME = input(' ','s'); INP = fopen(NAME,'rt'); OK = FALSE; while OK == FALSE fprintf(1,'Input N\n'); N = input(' '); if N > 0 XX = zeros(1,N+1); Q = zeros(1,N+1;1,N+1); for I = 0:N XX(I+1) = fscanf(INP, '%f',1); Q(I+1,1) = fscanf(INP, '%f',1); end fclose(INP); OK = TRUE; else fprintf(1,'Number must be a positive integer\n'); end end else fprintf(1,'Please create the input file in two column '); fprintf(1,'form with the X values and\n'); fprintf(1,'F(X) values in the corresponding columns.\n'); fprintf(1,'The program will end so the input file can '); fprintf(1,'be created.\n'); OK = FALSE; end end if FLAG == 3 fprintf(1,'Input the function F(x) in terms of x\n'); fprintf(1,'For example: cos(x)\n'); s = input(' ','s'); F = inline(s,'x'); OK = FALSE; while OK == FALSE fprintf(1,'Input n\n'); N = input(' '); if N > 0 XX = zeros(1,N+1); Q = zeros(1,N+1;1,N+1); for I = 0:N fprintf(1,'Input X(%d)\n', I); XX(I+1) = input(' '); Q(I+1,1) = F(XX(I+1)); end OK = TRUE; else fprintf(1,'Number must be a positive integer\n'); end end end