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