mirror of
https://gitcode.com/gh_mirrors/ope/OpenFace.git
synced 2026-05-14 11:17:53 +00:00
4 lines
108 B
Mathematica
4 lines
108 B
Mathematica
|
|
%detects if we're running Octave
|
||
|
|
function result = isOctave()
|
||
|
|
result = exist('OCTAVE_VERSION') ~= 0;
|
||
|
|
end
|