4 lines
No EOL
108 B
Matlab
4 lines
No EOL
108 B
Matlab
%detects if we're running Octave
|
|
function result = isOctave()
|
|
result = exist('OCTAVE_VERSION') ~= 0;
|
|
end |