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

8 lines
169 B
Mathematica
Raw Normal View History

2016-04-28 21:40:36 +02:00
% return OCTAVE_VERSION or 'undefined' as a string
function result = myOctaveVersion()
if isOctave()
result = OCTAVE_VERSION;
else
result = 'undefined';
end