ParaMonte MATLAB 3.0.0
Parallel Monte Carlo and Machine Learning Library
See the latest version documentation.
gpucoder.m
Go to the documentation of this file.
1%> \brief
2%> Return a scalar MATLAB logical that is ``true`` if and
3%> only if the current installation of MATLAB contains
4%> the MATLAB GPU_Coder Toolbox.
5%>
6%> \details
7%> This function searches the MATLAB license
8%> for an installation of the Toolbox.
9%>
10%> \return
11%> hasit
12%>
13%> The output scalar MATLAB logical that is ``true`` if and
14%> only if the current installation of MATLAB contains
15%> the required MATLAB Toolbox.
16%>
17%> \interface{gpucoder}
18%> \code{.m}
19%>
20%> hasit = pm.matlab.has.gpucoder();
21%>
22%> \endcode
23%>
24%> \example{gpucoder}
25%> \include{lineno} example/matlab/has/main.m
26%> \output{gpucoder}
27%> \include{lineno} example/matlab/has/main.out.m
28%>
29%> \final{gpucoder}
30%>
31%> \author
32%> \JoshuaOsborne, May 21 2024, 10:33 PM, University of Texas at Arlington<br>
33%> \FatemehBagheri, May 20 2024, 1:25 PM, NASA Goddard Space Flight Center (GSFC), Washington, D.C.<br>
34%> \AmirShahmoradi, May 16 2016, 9:03 AM, Oden Institute for Computational Engineering and Sciences (ICES), UT Austin<br>
35function hasit = gpucoder()
36 hasit = license('test', 'GPU_Coder');
37end
function gpucoder()
Return a scalar MATLAB logical that is true if and only if the current installation of MATLAB contain...