[1] | 1 | function 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:
|
---|
| 20 | if ((nargin==0) | (nargout==0)),
|
---|
| 21 | help findarg;
|
---|
| 22 | error('findarg error message');
|
---|
| 23 | end
|
---|
| 24 |
|
---|
| 25 | if ~ischar(field),
|
---|
| 26 | error('findarg error message: field should be a string');
|
---|
| 27 | end
|
---|
| 28 |
|
---|
| 29 | if ~iscell(arglist),
|
---|
| 30 | error('findarg error message: argument list should be a cell array.');
|
---|
| 31 | end
|
---|
| 32 |
|
---|
| 33 | %Recover data to plot
|
---|
| 34 | founddata=0;
|
---|
| 35 |
|
---|
| 36 | for 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
|
---|
| 47 | end
|
---|
| 48 |
|
---|
| 49 | if founddata==0,
|
---|
| 50 | vals=[];
|
---|
| 51 | end
|
---|