ParaMonte MATLAB 3.0.0
Parallel Monte Carlo and Machine Learning Library
See the latest version documentation.
bldtypes.m
Go to the documentation of this file.
1%> \brief
2%> Return a list of MATLAB strings containing the names of all
3%> currently possible builds of the ParaMonte MATLAB shared libraries.
4%>
5%> \return
6%> ``typelist`` : The output MATLAB string list containing the
7%> value ``["native", "tuned", "ipo", "release", "testing", "debug"]``.
8%>
9%> \interface{bldtypes}
10%> \code{.m}
11%>
12%> typelist = pm.lib.bldtypes();
13%>
14%> \endcode
15%>
16%> \devnote
17%> The build names within this function must be
18%> regularly updated with the latest build names
19%> available in the ParaMonte installation guide.
20%>
21%> \example{bldtypes}
22%> \include{lineno} example/lib/bldtypes/main.m
23%> \output{bldtypes}
24%> \include{lineno} example/lib/bldtypes/main.out.m
25%>
26%> \final{bldtypes}
27%>
28%> \author
29%> \JoshuaOsborne, May 21 2024, 8:01 PM, University of Texas at Arlington<br>
30%> \FatemehBagheri, May 20 2024, 1:25 PM, NASA Goddard Space Flight Center (GSFC), Washington, D.C.<br>
31%> \AmirShahmoradi, May 16 2016, 9:03 AM, Oden Institute for Computational Engineering and Sciences (ICES), UT Austin<br>
32function typelist = bldtypes()
33 typelist = ["native", "tuned", "ipo", "release", "testing", "debug"];
34end
function list()
Return a list of MATLAB strings containing the names of OS platforms supported by the ParaMonte MATLA...
function bldtypes()
Return a list of MATLAB strings containing the names of all currently possible builds of the ParaMont...
function lib()
Return a scalar MATLAB string containing the path to the lib directory of the ParaMonte library packa...
function release(in type)
Return a scalar MATLAB string containing the MATLAB release version, year, or season as requested.