⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 el_in_mesh2.m

📁 MATLAB二维电阻抗断层成像算法!用于医学成像,里面包括有限元剖分正问题,及反问题的算法.并且附有网络剖分数据表!
💻 M
字号:
function Ind = el_in_mesh2(H1,g1,H2,g2)

%el_in_mesh2 Makes the element connectivity data matrix between the two meshes 
% Function Ind = el_in_mesh2(H1,g1,H2,g2) 
% makes the element connectivity data matrix between the two meshes  defined by 
% H1, g1 and H2, g2. 
%
% INPUT
%
% H1 = connectivity of the coarse mesh
% g1 = coordinates of the nodes of the coarse mesh
% H2 = connectivity of the dense mesh
% g2 = coordinates of the nodes of the dense mesh
%
% OUTPUT
%
% Ind = element connectivity data matrix
 

S1 = size(H2,1);
S2 = size(H1,1);
Ind = zeros(S1,S2);
for i = 1:S1
  g = g2(H2(i,:),:);
  g11 = (1/3)*sum(g,1);
  T = tsearch(g1(:,1),g1(:,2),H1,g11(1,1),g11(1,2));
  Ind(i,T) = 1;
end
Ind = sparse(Ind);


⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -