% 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