Mercurial > hg > ltpda
diff m-toolbox/classes/@pzmodel/setGain.m @ 0:f0afece42f48
Import.
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Wed, 23 Nov 2011 19:22:13 +0100 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/m-toolbox/classes/@pzmodel/setGain.m Wed Nov 23 19:22:13 2011 +0100 @@ -0,0 +1,123 @@ +% SETGAIN sets the 'gain' property of the pzmodel object. +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% +% DESCRIPTION: SETGAIN sets the 'gain' property of the pzmodel object. +% +% CALL: objs.setGain(val); +% objs.setGain(val1, val2); +% objs.setGain(plist('gain', val)); +% objs = objs.setGain(val); +% +% INPUTS: objs: Can be a vector, matrix, list, or a mix of them. +% val: numeric value in seconds +% 1. Single vector e.g. 1.12 +% Each pzmodel object in objs get this value. +% 2. Single vector in a cell-array e.g. {1.12} +% Each pzmodel object in objs get this value. +% 3. cell-array with the same number of vectors as in objs +% e.g. {1.2, 2, 4} and 3 pzmodel object in objs +% Each pzmodel object in objs get its corresponding +% value from the cell-array +% +% <a href="matlab:utils.helper.displayMethodInfo('pzmodel', 'setGain')">Parameters Description</a> +% +% VERSION: $Id: setGain.m,v 1.9 2011/09/17 03:09:26 hewitson Exp $ +% +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +function varargout = setGain(varargin) + + % Check if this is a call from a class method + callerIsMethod = utils.helper.callerIsMethod; + + if callerIsMethod + sm = varargin{1}; + values = varargin(2:end); + + else + % Check if this is a call for parameters + if utils.helper.isinfocall(varargin{:}) + varargout{1} = getInfo(varargin{3}); + return + end + + import utils.const.* + utils.helper.msg(msg.PROC3, 'running %s/%s', mfilename('class'), mfilename); + + % Collect input variable names + in_names = cell(size(varargin)); + for ii = 1:nargin,in_names{ii} = inputname(ii);end + + % Collect all pzmodel objects + [sm, sm_invars, rest] = utils.helper.collect_objects(varargin(:), 'pzmodel', in_names); + [pls, invars, rest] = utils.helper.collect_objects(rest(:), 'plist'); + + % Define property name + pName = 'gain'; + + % Get values for the pzmodel objects + [sm, values] = processSetterValues(sm, pls, rest, pName); + + % Combine input plists and default PLIST + pls = combine(pls, getDefaultPlist()); + + end % callerIsMethod + + % Decide on a deep copy or a modify + sm = copy(sm, nargout); + + % Loop over pzmodel objects + for j=1:numel(sm) + sm(j).gain = values{j}; + if ~callerIsMethod + plh = pls.pset(pName, values{j}); + sm(j).addHistory(getInfo('None'), plh, sm_invars(j), sm(j).hist); + end + end + + % Set output + nObjs = numel(sm); + if nargout == nObjs; + % List of outputs + for ii = 1:nObjs + varargout{ii} = sm(ii); + end + else + % Single output + varargout{1} = sm; + end +end + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% Local Functions % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +%-------------------------------------------------------------------------- +% 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, mfilename('class'), 'ltpda', utils.const.categories.helper, '$Id: setGain.m,v 1.9 2011/09/17 03:09:26 hewitson Exp $', sets, pl); +end + +%-------------------------------------------------------------------------- +% Get Default Plist +%-------------------------------------------------------------------------- +function plout = getDefaultPlist() + persistent pl; + if exist('pl', 'var')==0 || isempty(pl) + pl = buildplist(); + end + plout = pl; +end + +function pl = buildplist() + pl = plist({'gain', 'New gain for the pole/zero model.'}, []); +end