OptFEM2DP1 Toolbox  V1.2
Matlab/Octave Optimized P1-Lagrange Finite Element Method in 2D
common/isOctave.m
Go to the documentation of this file.
00001 function bool=isOctave()
00002 % function bool=isOctave()
00003 %   To determine whether Octave is used or not
00004 %   
00005 % Return values:
00006 %  bool: if true Octave is used else Matlab is
00007 %
00008 % Copyright:
00009 %   See \ref license
00010 log=ver;
00011 bool=strcmp(log(1).Name,'Octave');
 All Files Functions