/ concept-collection / seqlab
Sign in
concept-collection / seqlab
seqlab / src / engine / pulseq / +mr / +aux / isOctave.m
8 lines · 183 BBlameHistoryRaw
1function OUT = isOctave ()
2% function that checks if we are in Octave
3 persistent IO;
4 if (isempty (IO))
5 IO = exist ('OCTAVE_VERSION', 'builtin');
6 end
7 OUT = IO;
8end
moveopenescclose