?? precompute_symmmd.m.txt
字號:
function [p,r] = precompute_symmmd(d);
% Precompute permutation vector for reduced nodal matrix to give
% minimum bandwidth.
% Taken from EIT code
% Colin Fox, 23 Nov 2004.
% Colin Fox, 1 Sep 2005 to use symamd (Matlab7) instead of obsolete symmmd
SR = RedNodalMat(d.trueDR,d.RefNode); % form the reduced nodal matrix, getting mesh topology from d
p = symamd(SR); % this is a MatLab function
r(p) = 1:max(size(p));
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -