
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
Material Type: Project; Professor: Vasilyev; Class: COMPUTATIONAL METHODS; Subject: Mechanical Engineering; University: University of Colorado - Boulder; Term: Unknown 1989;
Typology: Study Guides, Projects, Research
1 / 1
This page cannot be seen from the preview
Don't miss anything!

Develop, debug, and test a program (MATLAB m-file) that solves a system of linear equations Ax = b
using Gauss-Jordan elimination with complete pivoting. Organize you code in such way that the following two procedures are called from the loop:
Consider the possibility that matrix A is rank-deficient and the system does not have the solution. This will happen when in the process of pivoting you will encounter zero (or very small) diagonal element. This can only happen if the rows or columns are linear dependent. If this happen, make your program should display the error message like “error: matrix is rank deficient” and stop.
If possible, solve the following systems of linear equations with your own program:
a) b)
1 2 3
x x x
1 2 3
x x x
c)
1 2 3 4
x x x x
Check you results by substituting x into Ax and compare it with b. If your code is correct, Ax should be identical to b. If your code can not solve the problem, see whether you can invert the matrix using MATLAB internal procedure, inv(A). If you can, then the problem definitely has the solution and something is wrong with your code.
P.S. Email your code to [email protected]. The program that you send should be a working program. All the codes will be checked whether they run or not. If they are erroneous, but run, points will be taken for the errors. If the code is not running (it has some syntax errors), an additional 25% will be taken off. The goal of this class is for you to be comfortable solving engineering problems. Please take your time and learn how to trust the computer.