Mercurial > hg > ltpda
view m-toolbox/classes/@ltpda_uoh/clearHistory.m @ 44:409a22968d5e default
Add unit tests
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Tue, 06 Dec 2011 18:42:11 +0100 |
parents | f0afece42f48 |
children |
line wrap: on
line source
% CLEARHISTORY Clears the history of an object with history. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % DESCRIPTION: CLEARHISTORY Clears the history of an object with history. % This is a hidden method and use this method carefully. % % CALL: objs = clearHistory(objs) % objs = objs.clearHistory() % % VERSION: $Id: clearHistory.m,v 1.3 2011/04/08 08:56:30 hewitson Exp $ % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% function varargout = clearHistory(varargin) for kk=1:nargin if isa(varargin{kk}, 'ltpda_uoh') varargin{kk}.hist = []; end end varargout = varargin; end