view m-toolbox/classes/@ao/x.m @ 51:9d5c88356247
database-connection-manager
Make unit tests database connection parameters configurable
author
Daniele Nicolodi <nicolodi@science.unitn.it>
date
Wed, 07 Dec 2011 17:24:37 +0100 (2011-12-07)
parents
f0afece42f48
children
line source
+ − % X Get the data property 'x'.
+ − %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+ − %
+ − % DESCRIPTION: Get the data property 'x'.
+ − %
+ − % CALL: val = x(a1,a2,a3,...)
+ − % val = x(as)
+ − % val = as.x()
+ − %
+ − % INPUTS: aN - input analysis objects
+ − % as - input analysis objects array
+ − %
+ − % OUTPUTS: val - matrix with 'x', one column for each input object
+ − %
+ − % <a href="matlab:utils.helper.displayMethodInfo('ao', 'x')">Parameters Description</a>
+ − %
+ − % VERSION: $Id: x.m,v 1.16 2011/04/19 17:05:45 ingo Exp $
+ − %
+ − %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+ −
+ − function varargout = x(varargin)
+ −
+ − % Check if this is a call for parameters
+ − if utils.helper.isinfocall(varargin{:})
+ − varargout{1} = getInfo(varargin{3});
+ − return
+ − end
+ −
+ − import utils.const.*
+ −
+ − % Check if the method was called by another method
+ − callerIsMethod = utils.helper.callerIsMethod;
+ −
+ − if ~callerIsMethod
+ − % Collect all AOs
+ − [as, dummy, rest] = utils.helper.collect_objects(varargin(:), 'ao');
+ −
+ − % Collect numeric and char arguments to pass to getX
+ − args = {};
+ − for kk = 1:numel(rest)
+ − if isnumeric(rest{kk}) || ischar(rest{kk}) || islogical(rest{kk})
+ − args = [args {rest{kk}}];
+ − end
+ − end
+ − else
+ − % Assume the input is a single AO or a vector of AOs
+ − as = varargin{1};
+ −
+ − % Collect numeric and char arguments to pass to getX
+ − args = {};
+ − for kk = 2:nargin
+ − if isnumeric(varargin{kk}) || ischar(varargin{kk}) || islogical(varargin{kk})
+ − args = [args {varargin{kk}}];
+ − end
+ − end
+ − end
+ −
+ − % Get property
+ − out = [];
+ − for jj = 1:numel(as)
+ − if isprop(as(jj).data, 'x')
+ − out = [out as(jj).data.getX(args{:})];
+ − else
+ − out = [];
+ − utils.helper.msg(msg.IMPORTANT, 'At least one of the input objects has no x property. Setting all results to [].');
+ − break
+ − end
+ − end
+ −
+ − % Set output
+ − varargout{1} = out;
+ −
+ − end
+ −
+ − %--------------------------------------------------------------------------
+ − % Get Info Object
+ − %--------------------------------------------------------------------------
+ − function ii = getInfo(varargin)
+ − if nargin == 1 && strcmpi(varargin{1}, 'None')
+ − sets = {};
+ − pl = [];
+ − else
+ − sets = {'Default'};
+ − pl = getDefaultPlist;
+ − end
+ − % Build info object
+ − ii = minfo(mfilename, 'ao', 'ltpda', utils.const.categories.helper, '$Id: x.m,v 1.16 2011/04/19 17:05:45 ingo Exp $', sets, pl);
+ − ii.setModifier(false);
+ − end
+ −
+ − %--------------------------------------------------------------------------
+ − % Get Default Plist
+ − %--------------------------------------------------------------------------
+ − function plout = getDefaultPlist()
+ − persistent pl;
+ − if ~exist('pl', 'var') || isempty(pl)
+ − pl = buildplist();
+ − end
+ − plout = pl;
+ − end
+ −
+ − function pl = buildplist()
+ − pl = plist.EMPTY_PLIST;
+ − end