📄 gee_its_simple_resid.m
字号:
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/sparser = norm (A*x-b,inf) / (norm (A,inf) * norm (x, inf) + norm (b, inf)) ;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -