Loading [MathJax]/jax/input/TeX/config.js
ParaMonte MATLAB 3.0.0
Parallel Monte Carlo and Machine Learning Library
See the latest version documentation.
All Data Structures Files Functions Variables Pages
verify.m
Go to the documentation of this file.
1%> \brief
2%> Verify the type and number of elements of the input ``varval``
3%> match the specified input ``vartype`` and ``maxlen``.<br>
4%> Otherwise, halt the program by calling the MATLAB
5%> intrinsic ``error()`` with an appropriate
6%> descriptive error message.<br>
7%>
8%> \details
9%> This function is merely a higher-level wrapper around
10%> the ParaMonte functionality [pm.introspection.istype()](@ref istype).<br>
11%> The goal is to offer a unified interface for argument verification and
12%> aborting the program with a suitable error message if
13%> the verification fails.<br>
14%>
15%> \param[in] varval : The input value to whose type and
16%> number of elements is to be verified.<br>
17%> \param[in] vartype : See the documentation of the corresponding
18%> argument of [pm.introspection.istype()](@ref istype).<br>
19%> \param[in] maxlen : See the documentation of the corresponding
20%> argument of [pm.introspection.istype()](@ref istype).<br>
21%> \param[in] varname : The input scalar MATLAB string containing the label to assign
22%> to the namelist-converted value in the output ``entry``.<br>
23%> The specified value of ``varname`` will be trimmed
24%> (to remove leading and trailing blanks) and used
25%> only for outputting an error message.<br>
26%> (**optional**, default = ``"value"``)
27%>
28%> \interface{verify}
29%> \code{.m}
30%>
31%> pm.introspection.verify(varval, vartype, maxlen);
32%> pm.introspection.verify(varval, vartype, maxlen, varname);
33%>
34%> \endcode
35%>
36%> \devnote
37%> The input argument ``maxlen`` is named so (instead of ``varlen``)
38%> to signify the fundamental difference between the length type parameter of scalars
39%> and the size of array as rightly defined in the Fortran programming language.<br>
40%>
41%> \see
42%> [pm.introspection.verify](@ref verify)<br>
43%> [pm.introspection.verified](@ref verified)<br>
44%> [pm.introspection.islenleq](@ref islenleq)<br>
45%> [pm.introspection.istype](@ref istype)<br>
46%>
47%> \example{verify}
48%> \include{lineno} example/introspection/verify/main.m
49%> \output{verify}
50%> \include{lineno} example/introspection/verify/main.out.m
51%>
52%> \final{verify}
53%>
54%> \author
55%> \JoshuaOsborne, May 21 2024, 5:42 PM, University of Texas at Arlington<br>
56%> \FatemehBagheri, May 20 2024, 1:25 PM, NASA Goddard Space Flight Center (GSFC), Washington, D.C.<br>
57%> \AmirShahmoradi, May 16 2016, 9:03 AM, Oden Institute for Computational Engineering and Sciences (ICES), UT Austin<br>
58function verify(varval, vartype, maxlen, varname)
59 if nargin < 4
60 varname = "value";
61 else
62 varname = string(strtrim(varname));
63 end
64 varval = varval(:);
65 if ~pm.introspection.verified(varval, vartype, maxlen)
66 disp(varname + " = ");
67 disp(varval);
68 error ( newline ...
69 + "The input ``" + varname + "`` specification value(s) displayed" + newline ...
70 + "above must be conformable to a MATLAB " + vartype + " type," + newline ...
71 + "with a maximum " + string(maxlen) + " number of elements." + newline ...
72 + "The specified value has the class:" + newline ...
73 + newline ...
74 + pm.io.tab() + "class(" + varname + ") = " + string(class(varval)) + newline ...
75 + newline ...
76 + "with size:" + newline ...
77 + newline ...
78 + pm.io.tab() + "size(" + varname + ") = [" + join(string(size(varval)), ", ") + "]" + newline ...
79 + newline ...
80 );
81 end
82end
function verify(in varval, in vartype, in maxlen, in varname)
Verify the type and number of elements of the input varval match the specified input vartype and maxl...
function islenleq(in varval, in maxlen)
Return true if and only if the input varval has the specified maximum size maxlen,...
function istype(in varval, in vartype)
Return true if and only if the input varval conforms with the specified input type vartype,...
function verified(in varval, in vartype, in maxlen)
Return true if and only if the input varval conforms with the specified input type vartype and maximu...