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>
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>
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"``)
31%> pm.introspection.verify(varval, vartype, maxlen);
32%> pm.introspection.verify(varval, vartype, maxlen, varname);
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>
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>
48%> \include{lineno} example/introspection/
verify/main.m
50%> \include{lineno} example/introspection/
verify/main.out.m
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)
62 varname = string(strtrim(varname));
65 if ~pm.introspection.verified(varval, vartype, maxlen)
66 disp(varname +
" = ");
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 ...
74 + pm.io.tab() +
"class(" + varname +
") = " +
string(
class(varval)) + newline ...
76 +
"with size:" + newline ...
78 + pm.io.tab() +
"size(" + varname +
") = [" + join(
string(size(varval)),
", ") +
"]" + newline ...
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...