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