mirror of
https://gitcode.com/gh_mirrors/ope/OpenFace.git
synced 2026-05-02 00:50:17 +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 |