OptFEM3DP1 Toolbox  V1.0
Matlab/Octave Optimized P1-Lagrange Finite Element Method in 3D
 All Files Functions Variables Pages
BuildElemMassVFMatFunc.m
Go to the documentation of this file.
1 function ElemMassVFMat=BuildElemMassVFMatFunc(Num)
2 % Copyright:
3 % See \ref license
4 switch Num
5 case {0,1}
6  ElemMassVFMat=@(volume) ElemMassVFMat3DBaP1(volume);
7 case {2,3}
8  ElemMassVFMat=@(volume) ElemMassVFMat3DBbP1(volume);
9 end