Mercurial > hg > ltpda
view m-toolbox/classes/@ao/clearErrors.m @ 45:a59cdb8aaf31 database-connection-manager
Merge
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Tue, 06 Dec 2011 19:07:22 +0100 |
parents | f0afece42f48 |
children |
line wrap: on
line source
function clearErrors(varargin) bs = varargin{1}; if nargin > 1 pl = varargin{2}; app_axis = pl.find('axis'); else app_axis = 'xy'; end % Set units for jj = 1:numel(bs) if any('X'==upper(app_axis)) && isa(bs(jj).data, 'data2D') bs(jj).data.setDx([]); end if any('Y'==upper(app_axis)) bs(jj).data.setDy([]); end end end