Mercurial > hg > ltpda
view m-toolbox/classes/@timespan/copy.m @ 40:977eb37f31cb database-connection-manager
User friendlier errors from utils.mysql.connect
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Mon, 05 Dec 2011 18:04:03 +0100 |
parents | f0afece42f48 |
children |
line wrap: on
line source
% COPY makes a (deep) copy of the input TIMESPAN objects. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % DESCRIPTION: COPY makes a deep copy of the input TIMESPAN objects. % % CALL: b = copy(a, flag) % % INPUTS: a - input timespan object % flag - 1: make a deep copy, 0: return copies of handles % % OUTPUTS: b - copy of inputs % % This is a transparent function and adds no history. % % VERSION: $Id: copy.m,v 1.15 2010/07/30 13:42:16 nicolodi Exp $ % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% function varargout = copy(old, deepcopy) if deepcopy % Loop over input timespan objects new = timespan.newarray(size(old)); obj = copy@ltpda_uoh(new, old, 1); for kk=1:numel(old) obj(kk).startT = copy(old(kk).startT, 1); obj(kk).endT = copy(old(kk).endT, 1); end else obj = old; end varargout{1} = obj; end