OptFEM2DP1 Toolbox  V1.2
Matlab/Octave Optimized P1-Lagrange Finite Element Method in 2D
InitOptFEM2DP1.m
Go to the documentation of this file.
00001 function InitOptFEM2DP1()
00002 % function InitOptFEM2DP1()
00003 %   Initialization of the MATLAB search path and loading of msh
00004 %   package for Octave
00005 %
00006 %   If Octave is used, the msh and general packages are automatically loaded.
00007 %
00008 % Copyright:
00009 %   See \ref license
00010   addpath([pwd,filesep,'common']);
00011   addpath([pwd,filesep,'Opt']);
00012   addpath([pwd,filesep,'base']);
00013   addpath([pwd,filesep,'valid']);
00014   addpath([pwd,filesep,'bench']);
00015   if isOctave()
00016      more off
00017  
00018      pkg load msh
00019      pkg load general
00020      graphics_toolkit('fltk')
00021   end
 All Files Functions