source: issm/trunk/src/m/utils/Miscellaneous/findarg.m@ 2162

Last change on this file since 2162 was 2162, checked in by Mathieu Morlighem, 16 years ago

Added find_option

File size: 1.4 KB
Line 
1function vals=findarg(arglist,field)
2%FINDARG - find argument associated to a field in a list
3%
4% This function parses through an argument list (typically varargin in a routine)
5% looking for a character array equal to field. Once this is found, we return the
6% next value in the varargin (if possible).
7% Because field might appear several times in the argument list, we return a structure
8% holding all these values.
9% Note that all comparisons to field value are case independent.
10%
11% Usage:
12% vals=findarg(arglist,field)
13%
14% Example:
15% routine foobar calls vals=findarg('Data',varargin)
16% with varargin='Data',1,'Data','foo','Plot','velocity','Arrow',4
17% findarg would return the following structure: vals(1).value=1, vals(2).value='foo';
18
19%some argument checking:
20if ((nargin==0) | (nargout==0)),
21 help findarg;
22 error('findarg error message');
23end
24
25if ~ischar(field),
26 error('findarg error message: field should be a string');
27end
28
29if ~iscell(arglist),
30 error('findarg error message: argument list should be a cell array.');
31end
32
33%Recover data to plot
34founddata=0;
35
36for i=1:(length(arglist)-1), %data in arglist comes in pairs, hence the -1.
37 if ischar(arglist{i}),
38 if (strcmpi(arglist{i},field)),
39 founddata=founddata+1;
40 if founddata==1,
41 vals.value=arglist{i+1};
42 else
43 vals(end+1).value=arglist{i+1};
44 end
45 end
46 end
47end
48
49if founddata==0,
50 vals=[];
51end
Note: See TracBrowser for help on using the repository browser.