diff m-toolbox/classes/@cdata/applymethod.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/@cdata/applymethod.m	Wed Nov 23 19:22:13 2011 +0100
@@ -0,0 +1,90 @@
+% APPLYMETHOD applys the given method to the input cdata.
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%
+% DESCRIPTION: APPLYMETHOD applys the given method to the input cdata.
+%
+% CALL:        pl = applymethod(d, pl)
+%              pl = applymethod(d, pl, fcns)
+%
+% INPUTS:      d      - a cdata object
+%              pl     - a plist of configuration options
+%              fcns   - function handle(s) for the evaluation of the uncertainty
+%                       (alone or in a cell array)
+%
+% PARAMETERS:
+%
+%       'method' - the method to apply to the data
+%       'dim'    - the dimension of the chosen vector to apply the method
+%                  to. This is necessary for functions like mean() when
+%                  applied to matrices held in cdata objects. [default: 1]
+%       'option' - any additional option to pass to the method.
+%
+% VERSION:     $Id: applymethod.m,v 1.12 2011/04/17 09:13:05 hewitson Exp $
+%
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+
+function pl = applymethod(ds, pl, method, getDefaultPlist, varargin)
+  
+  % Get function handles
+  dxFcn = {};
+  for jj = 1:numel(varargin)
+    if isa(varargin{jj}, 'function_handle')
+      dxFcn = varargin{jj};
+    end
+    if iscell(varargin{jj})
+      list = varargin{jj};
+      if ~isempty(list) && isa(list{1}, 'function_handle')
+        dxFcn = list{1};
+      end
+    end
+  end
+
+  pl = applyDefaults(getDefaultPlist('1D'), pl);
+  
+  % Get the axis we are dealing with
+  axis = find(pl, 'axis');
+  % Get the dimension to operate along
+  dim = find(pl, 'dim');
+  % Get any additional option
+  opt = find(pl, 'option');
+  
+  % Loop over data objects
+  for jj=1:numel(ds)
+    switch lower(axis)
+      case 'y'
+        if ~isempty(ds(jj).dy) && ~isempty(dxFcn)
+          ds(jj).dy = feval(dxFcn, ds(jj).y, ds(jj).dy);
+        else
+          ds(jj).dy = [];
+        end
+        ds(jj).y = apply(ds(jj).y, method, dim, opt);
+      otherwise
+        error('### Unsupported axis ''%s'' to operate on.', axis);
+    end
+  end
+  
+end
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%                               Local Functions                               %
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+
+%-----------------------------------------------
+% Apply method to the vector v
+%-----------------------------------------------
+function v = apply(v, method, dim, opt)
+  if ~isempty(dim) && ~isempty(opt)
+    % User supplied a dimension and an option
+    v = feval(method, v, dim, opt);
+  elseif ~isempty(dim)
+    % User supplied only a dimension
+    v = feval(method, v, dim);
+  elseif ~isempty(opt)
+    % User supplied only an option
+    v = feval(method, v, opt);
+  else
+    % User supplied only a method
+    v = feval(method, v);
+  end
+end
+