Mercurial > hg > ltpda
view m-toolbox/classes/@history/rebuild.m @ 29:54f14716c721 database-connection-manager
Update Java code
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Mon, 05 Dec 2011 16:20:06 +0100 |
parents | f0afece42f48 |
children |
line wrap: on
line source
% REBUILD rebuilds the orignal object using the history. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % DESCRIPTION: REBUILD rebuilds the orignal object using the history. % Necessary for the ltpda_uoh/rebuild method. % % CALL: out = rebuild(h) % out = rebuild(h, pl) % % INPUTS: h - array of history objects % pl - configuration PLIST for the history/hist2m method % % OUTPUTS: out - array of rebuilt objects. % % VERSION: $Id: rebuild.m,v 1.7 2011/11/16 08:25:59 mauro Exp $ % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% function varargout = rebuild(varargin) import utils.const.* % Get history objects hs = varargin{1}; pl = []; % Get configuration PLIST if nargin >= 2 pl = varargin{2}; end % Go through each input AO bs = []; for jj = 1:numel(hs) % convert to commands if isempty(hs(jj)) cmds = {'a_out = [];'}; else if isempty(pl) cmds = hist2m(hs(jj)); else cmds = hist2m(hs(jj), pl); end end % execute each command for kk = numel(cmds):-1:1 utils.helper.msg(msg.PROC4, 'executing command: %s', cmds{kk}); eval(cmds{kk}); end % add to outputs bs = [bs a_out]; end % End object loop % Set output varargout{1} = bs; end