% DX Get the data property 'dz'.%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% DESCRIPTION: Get the data property 'dz'.%% CALL: val = dz(a1,a2,a3,...)% val = dz(as)% val = as.dz()%% INPUTS: aN - input analysis objects% as - input analysis objects array%% OUTPUTS: val - matrix with 'dz', one column for each input object%% <a href="matlab:utils.helper.displayMethodInfo('ao', 'dz')">Parameters Description</a>%% VERSION: $Id: dz.m,v 1.5 2011/04/19 17:05:45 ingo Exp $%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%function varargout = dz(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 getDz 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 getDz 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, 'dz') out = [out as(jj).data.getDz(args{:})]; else out = []; utils.helper.msg(msg.IMPORTANT, 'At least one of the input objects has no dz 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: dz.m,v 1.5 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; endfunction pl = buildplist() pl = plist.EMPTY_PLIST;end