mirror of
https://gitcode.com/gh_mirrors/ope/OpenFace.git
synced 2026-05-14 03:12:42 +00:00
8 lines
169 B
Mathematica
8 lines
169 B
Mathematica
|
|
% return OCTAVE_VERSION or 'undefined' as a string
|
||
|
|
function result = myOctaveVersion()
|
||
|
|
if isOctave()
|
||
|
|
result = OCTAVE_VERSION;
|
||
|
|
else
|
||
|
|
result = 'undefined';
|
||
|
|
end
|