sustaining_gazes/matlab_version/face_validation/DeepLearnToolbox/util/isOctave.m

4 lines
108 B
Mathematica
Raw Normal View History

2016-04-28 21:40:36 +02:00
%detects if we're running Octave
function result = isOctave()
result = exist('OCTAVE_VERSION') ~= 0;
end