搜索资源列表
-
0下载:
高斯消元法,可以随意改变方程组的行列数,用数组来存储矩阵的系数-Gaussian elimination, can be changed at the ranks of the number of equations, using an array to store the coefficient matrix
-
-
0下载:
Program to solve problems by Gaussian Elimination, from a matriz of nxn components, auto solving, and algo autofilled from the matriz
-
-
0下载:
Systems of linear equations
Our Matlab function for naive Gaussian
elimination looks like this:
function x = naiv_gauss(A,b)
n = length(b) x = zeros(n,1)
for k=1:n-1 forward elimination
for i=k+1:n
xmult = A(i,k)/A(k,k)
for j=k+1:n
-