OptFEM2DP1  1.0
Matlab/Octave Optimized P1-Lagrange Finite Element Method in 2D
 All Files Functions Variables Groups Pages
runBenchs.m
Go to the documentation of this file.
1 function runBenchs()
2 % function runBenchs()
3 % Run benchs for Mass (#benchMassP1), MassW (#benchMassWP1) and
4 % Stiff (#benchStiffP1) matrices.
5 %
6 % See also:
8 %
9 % OptFEM2DP1 [V1.0e] - Copyright (C) 2013 CJS (LAGA)
10 %
11 % This file is part of OptFEM2DP1.
12 % OptFEM2DP1 is free software: you can redistribute it and/or modify
13 % it under the terms of the GNU General Public License as published by
14 % the Free Software Foundation, either version 3 of the License, or
15 % (at your option) any later version.
16 %
17 % OptFEM2DP1 is distributed in the hope that it will be useful,
18 % but WITHOUT ANY WARRANTY; without even the implied warranty of
19 % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 % GNU General Public License for more details.
21 %
22 % You should have received a copy of the GNU General Public License
23 % along with this program. If not, see <http://www.gnu.org/licenses/>.
24 close all
25 
26 InitOptFEM2D();
27 
28 benchMassP1();
29 benchMassWP1();
30 benchStiffP1();