?? findboundary.m
字號:
function indbound = findboundary(g,H)
%findboundary Indices of the boundary nodes
% Function indbound = findboundary(g,H);
% finds the indices of the boundary nodes.
%
% INPUT
%
% g = node coordinates
% H = connectivity
%
% OUTPUT
%
% indbound = indices of the boundary nodes
indbound = [];
for i = 1:size(g,1);
I11 = find(H == i);
if size(I11,1) < 4
indbound = [indbound;i];
end
end
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -