Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Print the screen shot of your MATLAB code with output. Printout must be legible. The first line of your code must be % your
Print the screen shot of your MATLAB code with output. Printout must be legible. The first line of your code must be % your name. You must show your NAU user name in the "Editor" header. Use NAU computers (possibly the NAU Remote Desktop). iG-1) and Problem. A = [a,] is a Vandermonde matrix of order 5 where aj [1,2,3, 4, 5]". Use the following pseudocode to approximate the solution of A7= Gauss-Seidel Method. Explain steps by commenting on them. %3D by the Algorithm Gauss-Seidel Input: A, 6, = zero (column) vector of order n, tolerance 10-6 Output: the solution of A7 = 6 correct within 10-6 or a message of failure. n = length of , z zero (column) vector of order n, rold = zero (column) vector of order n. for k = 1 to 1000 for i = 1 to n = 0.0 for j = 1 to n if j < i x(i] = r[i] + (A[i, j] * *[j]) if j > i x[i] = r[i] + (A[i,j] * xold[j]) rfi] = (bli] rli)/A[i, i] xold=x if ||A *r - b|| < 10-6 FoundSolution=1 break; if FoundSolution=1 print 'Number of iteration=', k, 'Solution=', r else print The required accuracy is not reached in 1000 iterations'
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Given below is the code for the question Just to see the value of root at each iteration I have not ...Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started