Skip to content

Tools for passing optional parameters and name/value pairs in MATLAB.

Notifications You must be signed in to change notification settings

xingzhe996/ExtractNameVal

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ExtractNameVal

Tools for passing optional parameters and name/value pairs in MATLAB.

This project provides a few simple functions that you can use to parse optional parameters and name/value pairs within your own functions. Here is a quick overview:

Features:

  • Parameter values can be of any type: numbers, strings, arrays, cells,...
  • Your function controls the order in which parameters are checked; the order in which the parameters are specified in the call to your function does not matter.
  • You specify whether each parameter name is case-sensitive or case-insensitive.
  • You specify a default value for each optional parameter, and the parameter is automatically set to its default value if it is not specified in the function call.
  • You may specify multiple acceptable names for a single parameter (in case there are several names that make sense and you want to accept any of them).
  • You can check parameter values to make sure they meet your criteria (via assertions).
  • ;

Example

You write a function "foobar" that takes 2 required parameters (x, y). Suppose you also want it to take some optional parameters, such as:

  • A string switch, for example 'absolute'
  • A name-value pair such as 'factor',10.4
  • Another name-value pair such as 'directory','C:\Data'
  • Another name-value pair such as 'filelist',{'file1' 'file2' 'file3'}
  • A name-value pair specifying a 'posfactor' that must be greater than 0.
  • and so on...

Here is approximately what your code would look like:

function foobar(x,y,varargin)
% A function to illustrate parameter handling with ExtractNameVal.

CaseSensitive = true;

[abspresent, varargin] = ExtractName('absolute',varargin,CaseSensitive);
% abspresent will be set to true if foobar is called with the optional parameter:  'absolute';
% otherwise, abspresent will be set to false.

[factorval,  varargin] = ExtractNameVal('factor',-10,varargin,CaseSensitive);
% factorval will be set to X if foobar is called with the optional parameter pair:  'factor',X
% otherwise, factorval will be set to the specified default factorval of -10

[direcval,   varargin] = ExtractNameVal('directory','',varargin,CaseSensitive);
% direcval will be set to X if foobar is called with the optional parameter pair:  'directory',X
% otherwise, direcval will be set to the specified default direcval of '' (an empty string)

[filelistval,varargin] = ExtractNameVal('filelist',{},varargin,CaseSensitive);
% filelistval will be set to X if foobar is called with the optional parameter pair:  'filelist',X
% otherwise, filelistval will be set to the specified default filelistval of {} (an empty cell array)

[posfactorval,  varargin] = ExtractNameVal('posfactor',1,varargin,CaseSensitive,'x>0');
% posfactorval will be set to X if foobar is called with the optional parameter pair:  'posfactor',X
% otherwise, posfactorval will be set to the specified default posfactorval of 1.
% The final value of posfactor will be checked to make sure it is greater than zero.



% Note that parameters are removed from varargin as they are processed,
% so you can check for unrecognized parameters at the end.
if numel(varargin)>0
   warning('Not all varargin parameters were handled!');
end

% Your function code goes here...

end

About

Tools for passing optional parameters and name/value pairs in MATLAB.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • MATLAB 100.0%