MESH toolbox  0.1
Matlab/Octave mesh utils
 All Files Functions Groups Pages
isOctave.m
Go to the documentation of this file.
1 function bool=isOctave()
2 % function bool=isOctave()
3 % return true if running under Octave
4 log=ver;
5 bool=strcmp(log(1).Name,'Octave');