Is this MATLAB or Octave?

Version 1.0.0.0 (509 Bytes) by ioxv.4623
Crude but effective tests of whether code is executed in matlab or octave.
738 Downloads
Updated 23 Apr 2009

View License

UIMATLAB returns true if the function is called from matlab, and false otherwise.

UIOCTAVE returns true if the function is called from octave, and false otherwise.

Using these functions, one is able to execute different parts of the code depending on what engine is performing the operations. Compatibility issues between MATLAB and Octave can thus be avoided.

For example:

if uimatlab
disp('This is MATLAB.')
elseif uioctave
disp('This is Octave.')
else
disp('I do not know what user environment this is.')
end

Cite As

ioxv.4623 (2026). Is this MATLAB or Octave? (https://www.mathworks.com/matlabcentral/fileexchange/23868-is-this-matlab-or-octave), MATLAB Central File Exchange. Retrieved .

MATLAB Release Compatibility
Created with R2007b
Compatible with any release
Platform Compatibility
Windows macOS Linux
Version Published Release Notes
1.0.0.0