Differences between Octave and Matlab: Difference between revisions

Add function from manual on detecting whether you're running Octave
(changed packages link. removed comment that function list is up to date)
(Add function from manual on detecting whether you're running Octave)
Line 435: Line 435:


Function assert have extended input possibilities.
Function assert have extended input possibilities.
== How to Programmatically Identify If You're Running Octave ==
Because you may want to write cross-platform compatible code but make use of Octave-specific features when they're available, it may be necessary to programmatically detect the program environment. The following function can be used to detect whether it is being run in Octave. Due to the persistent variable it can be called repeatedly without a heavy performance hit.
    %% Return: true if the environment is Octave.
    %%
    function retval = isOctave
      persistent cacheval;  % speeds up repeated calls
   
      if isempty (cacheval)
        cacheval = (exist ("OCTAVE_VERSION", "builtin") > 0);
      end
   
      retval = cacheval;
    end


== External links ==
== External links ==
153

edits