1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
|
########################################################################
##
## Copyright (C) 2008-2024 The Octave Project Developers
##
## See the file COPYRIGHT.md in the top-level directory of this
## distribution or <https://octave.org/copyright/>.
##
## This file is part of Octave.
##
## Octave is free software: you can redistribute it and/or modify it
## under the terms of the GNU General Public License as published by
## the Free Software Foundation, either version 3 of the License, or
## (at your option) any later version.
##
## Octave is distributed in the hope that it will be useful, but
## WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
## GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with Octave; see the file COPYING. If not, see
## <https://www.gnu.org/licenses/>.
##
########################################################################
## -*- texinfo -*-
## @deftypefn {} {@var{val} =} optimget (@var{options}, @var{par})
## @deftypefnx {} {@var{val} =} optimget (@var{options}, @var{par}, @var{default})
## Return the value of the specific parameter @var{par} from the optimization
## options structure @var{options} created by @code{optimset}.
##
## If @var{par} is not defined then return the @var{default} value if
## supplied, otherwise return an empty matrix.
##
## If @var{par} does not exactly match the name of a standard parameter,
## @code{optimget} will attempt to match @var{par} to a standard parameter
## and will return that parameter's value if a match is found. Matching is
## case insensitive and is based on character matching at the start of the
## parameter name. @code{optimget} produces an error if it finds multiple
## ambiguous matches. If no standard parameter matches are found a warning is
## issued. See @code{optimset} for information about the standard options
## list.
##
## Note: Only parameter names from the standard list are considered when
## matching short parameter names, and @var{par} will always be expanded to
## match a standard parameter even if an exact non-standard match exists. The
## value of a non-standard parameter that is ambiguous with one or more
## standard parameters cannot be returned by @code{optimget} and can only be
## accessed using @code{getfield} or dot notation for structs.
## @seealso{optimset}
## @end deftypefn
function optval = optimget (options, optname, default)
if (nargin < 2 || ! isstruct (options) || ! ischar (optname))
print_usage ();
endif
## Expand partial-length names into full names
opts = __all_opts__ ();
idx = strncmpi (opts, optname, length (optname));
nmatch = sum (idx);
if (nmatch == 1)
optname = opts{idx};
elseif (nmatch == 0)
warning ("optimget: unrecognized option: '%s'", optname);
else
fmt = sprintf ("optimget: ambiguous option: '%%s' (%s%%s)",
repmat ("%s, ", 1, nmatch-1));
error (fmt, optname, opts{idx});
endif
if (isfield (options, optname) && ! isempty (options.(optname)))
optval = options.(optname);
elseif (nargin > 2)
optval = default;
else
optval = [];
endif
endfunction
%!shared opts
%! opts = optimset ("tolx", 0.1, "maxit", 100);
%!assert (optimget (opts, "TolX"), 0.1)
%!assert (optimget (opts, "maxit"), 100)
%!assert (optimget (opts, "MaxITer"), 100)
%!assert (optimget (opts, "TolFun"), [])
%!assert (optimget (opts, "TolFun", 1e-3), 1e-3)
## Test input validation
%!error <Invalid call> optimget ()
%!error <Invalid call> optimget (1)
%!error optimget (1, "name")
%!error optimget (struct (), 2)
%!warning <unrecognized option: 'foobar'> (optimget (opts, "foobar"));
%!error <ambiguous option: 'Max'> (optimget (opts, "Max"));
|