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
|