Skip to content
Snippets Groups Projects

removing "beams" module

Merged Boman Romain requested to merge byebye_jalil into master
31 files
+ 0
1108
Compare changes
  • Side-by-side
  • Inline
Files
31
+ 0
14
function KK2D = f_K3d_to_2d( msh, KK )
%F_K3D_TO_2D Summary of this function goes here
% Detailed explanation goes here
NV = size(msh.V,1);
% Probleme plan (3D => 2D)
idx32 = [6*(0:NV-1)+1;
6*(0:NV-1)+2;
6*(0:NV-1)+6]; % dof #1, #2 and #6
idx32 = idx32(:);
KK2D = KK(idx32,idx32');
end
Loading