?? 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 + -