Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
function iters = lambda_fcn(A,b,lambda)
% function to minimize the number of iterations for a given Ax=b solution
% using default Jacobi_rel parameters of es=0.00001 and maxit=50
[x,ea,iters]= Jacobi_rel(A,b,lambda,1e-8);
end