OptFEM3DP1 Toolbox  20130618_070730
Matlab/Octave Optimized P1-Lagrange Finite Element Method in 3D
 All Files Functions Variables Pages
InitOptFEM3D.m
Go to the documentation of this file.
1 function InitOptFEM3D()
2 % function InitOptFEM3D()
3 % Initialization of the MATLAB search path and loading of msh
4 % package for Octave
5 %
6 % If Octave is used, the msh and general packages are automatically loaded.
7 %
8 % Copyright:
9 % See \ref license
10  addpath([pwd,filesep,'common']);
11  addpath([pwd,filesep,'Opt']);
12  addpath([pwd,filesep,'base']);
13  addpath([pwd,filesep,'valid']);
14  addpath([pwd,filesep,'ElemMat']);
15  addpath([pwd,filesep,'bench']);
16  if isOctave()
17  more off
18 
19  pkg load msh
20  pkg load general
21  graphics_toolkit('fltk')
22  end