ispc
Checks if version is for Windows platform.
📝Syntax
s = ispc()
📤Output Arguments
Parameter Description
s a logical: true if it is a Windows platform.
📄Description

ispc checks if it is a Windows platform.

💡Examples
if ispc
  disp('Your platform is Windows')
else
  disp('Your platform is not Windows')
end
🔗See Also
isunixismac
🕔Version History
Version Description
1.0.0 initial version
Edit this page on GitHub