diff m-toolbox/classes/@ao/setX.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/@ao/setX.m	Wed Nov 23 19:22:13 2011 +0100
@@ -0,0 +1,108 @@
+% SETX sets the 'x' property of the ao.
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%
+% DESCRIPTION: SETX sets the 'x' property of the ao.
+%
+% CALL:        objs.setX(val);
+%              objs.setX(val1, val2);
+%              objs.setX(plist('x', val));
+%              objs = objs.setX(val);
+%
+% INPUTS:      objs: Can be a vector, matrix, list, or a mix of them.
+%              val:
+%                 1. Single vector e.g. [1 2 3]
+%                      Each AO in objs get this value.
+%                 2. Single vector in a cell-array e.g. {[1 2 3]}
+%                      Each AO in objs get this value.
+%                 3. cell-array with the same number of vectors as in objs
+%                    e.g. {[6 5 4], 5, [1 2 3]} and 3 AOs in objs
+%                      Each AO in objs get its corresponding value from the
+%                      cell-array
+%
+% <a href="matlab:utils.helper.displayMethodInfo('ao', 'setX')">Parameters Description</a>
+%
+% VERSION:     $Id: setX.m,v 1.26 2011/09/16 05:03:21 hewitson Exp $
+%
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+
+function varargout = setX(varargin)
+  
+  % Check if this is a call from a class method
+  callerIsMethod = utils.helper.callerIsMethod;
+  
+  if callerIsMethod
+    in_names = {};
+  else
+    % Collect input variable names
+    in_names = cell(size(varargin));
+    for ii = 1:nargin,in_names{ii} = inputname(ii);end
+  end
+  
+  objects = setPropertyValue(...
+    varargin{:}, ...
+    in_names, ...
+    callerIsMethod, ...
+    'x', ...
+    @setterFcn, ...
+    nargout, ...
+    @getInfo);
+  
+  % set outputs
+  varargout = utils.helper.setoutputs(nargout, objects);
+  
+end
+
+% Setter function to set x
+function value = setterFcn(varargin)
+  
+  if nargin < 3
+    error('Please provide a value for the ''x'' property');
+  end
+  
+  obj   = varargin{1};
+  pl    = varargin{2};
+  value = varargin{3};
+  
+  % be careful that the returned value remains an AO!
+  if isa(value, 'ao')
+    obj.data.setX(value.y);
+  else
+    obj.data.setX(value);
+  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, 'ao', 'ltpda', utils.const.categories.helper, '$Id: setX.m,v 1.26 2011/09/16 05:03:21 hewitson Exp $', sets, pl);
+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({'x', 'A vector of values to set.'}, paramValue.EMPTY_DOUBLE);
+end
+