Code covered by the BSD License  

Highlights from
Gaussian Elimination Example (with partial pivoting): GEE, it's simple!

from Gaussian Elimination Example (with partial pivoting): GEE, it's simple! by Tim Davis
A set of simple functions that illustrate Gaussian Elimination with partial pivoting

gee_its_simple_resid (A, x, b)
function r = gee_its_simple_resid (A, x, b)
%GEE_ITS_SIMPLE_RESID compute the relative residual for x=A\b
% For non-singular matrices with reasonable condition number, the relative
% residual is typically O(eps).
%
% Example:
%
%   r = gee_its_simple_resid (A, x, b) ;
%
% See also: norm, gee_its_simple

% Copyright 2007, Timothy A. Davis.
% http://www.cise.ufl.edu/research/sparse

r = norm (A*x-b,inf) / (norm (A,inf) * norm (x, inf) + norm (b, inf)) ;

Contact us at files@mathworks.com