gauss_elim.m

来自「五点差分型多重网格方法:各种插值算子的比较)」· M 代码 · 共 14 行

M
14
字号
function X_soln = gauss_elim(level, b)

% Ryan McKenzie
% Department of Computational Sciences
% University of Kentucky

amg_globals;

%Solves the system A(level) x_soln = b
%This command will use Gauss Elimination when appropriate 
%When not appropriate i.e. A(level) is near singular or badly scaled
%this command will use QR Decomposition with Pivoting

X_soln = A(level).matrix \ b;

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?