ParaMonte MATLAB 3.0.0
Parallel Monte Carlo and Machine Learning Library
See the latest version documentation.
win.m
Go to the documentation of this file.
1%> \brief
2%> Return ``true`` if the current OS is Windows.
3%>
4%> \return
5%> ``itis`` : The output MATLAB logical scalar value that is ``true``
6%> if and only if the OS is Windows, otherwise ``false``.
7%>
8%> \interface{win}
9%> \code{.m}
10%>
11%> itis = pm.os.is.win()
12%>
13%> \endcode
14%>
15%> \example{win}
16%> \include{lineno} example/os/is/main.m
17%> \output{win}
18%> \include{lineno} example/os/is/main.out.m
19%>
20%> \final{win}
21%>
22%> \author
23%> \JoshuaOsborne, May 21 2024, 11:47 PM, University of Texas at Arlington<br>
24%> \FatemehBagheri, May 20 2024, 1:25 PM, NASA Goddard Space Flight Center (GSFC), Washington, D.C.<br>
25%> \AmirShahmoradi, May 16 2016, 9:03 AM, Oden Institute for Computational Engineering and Sciences (ICES), UT Austin<br>
26function itis = win()
27 itis = ispc;
28end
function win()
Return true if the current OS is Windows.