Susanna Westersund
Followers: 0 Following: 0
Feeds
提问
Gaussian Elimination with Partial Pivoting, how do I swap rows
function output= pivGauss(A) %% Problem Setup % Get the size of the problem (number of equations / unkno...
4 years 前 | 1 个回答 | 0
1
个回答提问
Matrix inversion and LU Decomposition. Having issues with the for loops and how they reference inputs.
function output =myMatrixInversion(A) %% Problem Setup i=1; n=size(A); AInv=zeros(n,n); L=eye(n); ...
4 years 前 | 1 个回答 | 0