📄 residual.m
字号:
%RESIDUAL Compute the residual at the given level.
%
% R = RESIDUAL(LEVEL, B, U) returns the residual R of the system
% AU=B at the given grid level.
%
% Accesses global variables in "include_globals"
% James Bordner and Faisal Saied
% Department of Computer Science
% University of Illinois at Urbana-Champaign
% 10 April 1995
function r = residual(level, b, u)
include_globals
eval(['r = b - A', num2str(level), ' * u;']);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -