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