Write a function to solve a system of linear equations of the
form Ax= b using the iterative Gauss-Seidel
method. You are free to use any basic MATLAB operation to implement
the algorithm (i.e. you may use any combination of loops, indexing,
math, etc.), but avoid “built-in” solution methods — you would not
be allowed to use the GaussSeidel
function if such a function existed. The function must also
test for a number of possible issues. If an issue is...