Main Content

ispc

Determine if version is for Windows (PC) platform

Syntax

Description

example

tf = ispc returns logical 1 (true) if the version of MATLAB® software is for the Microsoft® Windows® platform. Otherwise, it returns logical 0 (false).

Examples

collapse all

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

Extended Capabilities

Version History

Introduced before R2006a