Feeds
已回答
Jacobi iterative method in matlab
function x1 = jacobi2(a,b,x0,tol) n = length(b); for j = 1 : n x(j) = ((b(j) - a(j,[1:j-1,j+1:n]) * x0([1:j-1,j+1:n])) /...
Jacobi iterative method in matlab
function x1 = jacobi2(a,b,x0,tol) n = length(b); for j = 1 : n x(j) = ((b(j) - a(j,[1:j-1,j+1:n]) * x0([1:j-1,j+1:n])) /...
4 years 前 | 0