📄 gauss_elim.m
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -