IsOctave.m 242 B

123456789101112
  1. %
  2. % Return: true if the environment is Octave.
  3. %
  4. function retval = IsOctave
  5. persistent cacheval; % speeds up repeated calls
  6. if isempty (cacheval)
  7. cacheval = (exist ("OCTAVE_VERSION", "builtin") > 0);
  8. end
  9. retval = cacheval;
  10. end