Mercurial > hg > ltpda
view m-toolbox/classes/@tsdata/copy.m @ 16:91f21a0aab35 database-connection-manager
Update utils.jquery
* * *
Update utils.jmysql.getsinfo
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Mon, 05 Dec 2011 16:20:06 +0100 |
parents | f0afece42f48 |
children |
line wrap: on
line source
% COPY makes a (deep) copy of the input tsdata objects. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % DESCRIPTION: COPY makes a deep copy of the input tsdata objects. % % CALL: b = copy(a, flag) % % INPUTS: a - input tsdata 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.14 2011/06/20 16:50:11 ingo Exp $ % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% function varargout = copy(old, deepcopy) if deepcopy % Loop over input tsdata objects new = tsdata.newarray(size(old)); obj = copy@data2D(new, old, 1); for kk=1:numel(old) obj(kk).t0 = copy(old(kk).t0, 1); obj(kk).toffset = old(kk).toffset; obj(kk).fs = old(kk).fs; obj(kk).nsecs = old(kk).nsecs; end else obj = old; end varargout{1} = obj; end