Question: Gaussian Elimation Problem. Using matlab, write a function, called ge, that solves the linear system Ax=b (where A M n () and b n .
Gaussian Elimation Problem. Using matlab, write a function, called ge, that solves the linear system Ax=b (where A Mn() and b n. Note that we are talking about n by m matricies.) via Gaussian elimination without pivoting. The code should compute the LU (lower upper) decomposition of A, with the matricies L and U stored over A. The code should solve the system by solving the lower triangular system Ly=b (using row oriented forward substitution), and then solving the upper triangular system Ux=y (using row oriented back substitution).
.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
