📄 converged.m
字号:
function b = converged(u,udash,threshhold)% converged(u,udash,threshhold)% Returns 1 if u and udash are not different by the ratio threshhold% (default 0.001).% Mon May 17 20:01:31 JST 2004 dmochiha@slt% thresholdif (nargin < 3) threshhold = 1.0e-3;end% mainif (diff_vec(u, udash) < threshhold) b = true;else b = false;end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -