ParaMonte MATLAB 3.0.0
Parallel Monte Carlo and Machine Learning Library
See the latest version documentation.
listl.m
Go to the documentation of this file.
1%> \brief
2%> Return a list of MATLAB strings containing the lower-case names
3%> of all OS platforms supported by the ParaMonte MATLAB library.
4%>
5%> \return
6%> ``names`` : The output MATLAB string list containing:
7%> ``["windows", "linux", "darwin"]``.
8%>
9%> \interface{listl}
10%> \code{.m}
11%>
12%> names = pm.os.listl()
13%>
14%> \endcode
15%>
16%> \example{listl}
17%> \include{lineno} example/os/listl/main.m
18%> \output{listl}
19%> \include{lineno} example/os/listl/main.out.m
20%>
21%> \final{listl}
22%>
23%> \author
24%> \JoshuaOsborne, May 21 2024, 11:51 PM, University of Texas at Arlington<br>
25%> \FatemehBagheri, May 20 2024, 1:25 PM, NASA Goddard Space Flight Center (GSFC), Washington, D.C.<br>
26%> \AmirShahmoradi, May 16 2016, 9:03 AM, Oden Institute for Computational Engineering and Sciences (ICES), UT Austin<br>
27function names = listl()
28 names = lower(pm.os.list());
29end
function list()
Return a list of MATLAB strings containing the names of OS platforms supported by the ParaMonte MATLA...
function listl()
Return a list of MATLAB strings containing the lower-case names of all OS platforms supported by the ...