isunix

Determine if version is for Linux or Mac platforms

Syntax

Description

example

tf = isunix returns logical 1 (true) if the version of MATLAB® is for Linux® or Apple Mac OS X platforms. Otherwise, it returns logical 0 (false).

Examples

collapse all

if ismac
    % Code to run on Mac plaform
elseif isunix
    % Code to run on Linux plaform
elseif ispc
    % Code to run on Windows platform
else
    disp('Platform not supported')
end

See Also

| | | |

Introduced before R2006a

Was this topic helpful?