view m-toolbox/classes/@fsdata/copy.m @ 17:7afc99ec5f04
database-connection-manager
Update ao_model_retrieve_in_timespan
author
Daniele Nicolodi <nicolodi@science.unitn.it>
date
Mon, 05 Dec 2011 16:20:06 +0100 (2011-12-05)
parents
f0afece42f48
children
line source
+ − % COPY makes a (deep) copy of the input fsdata objects.
+ − %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+ − %
+ − % DESCRIPTION: COPY makes a deep copy of the input fsdata objects.
+ − %
+ − % CALL: b = copy(a, flag)
+ − %
+ − % INPUTS: a - input fsdata 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.13 2010/06/25 15:11:47 ingo Exp $
+ − %
+ − %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+ −
+ − function varargout = copy(old, deepcopy)
+ −
+ − if deepcopy
+ − % Loop over input fsdata objects
+ − new = fsdata.newarray(size(old));
+ − obj = copy@data2D(new, old, 1);
+ −
+ − for kk=1:numel(old)
+ − obj(kk).t0 = copy(old(kk).t0, 1);
+ − obj(kk).navs = old(kk).navs;
+ − obj(kk).fs = old(kk).fs;
+ − obj(kk).enbw = old(kk).enbw;
+ − end
+ − else
+ − obj = old;
+ − end
+ −
+ − varargout{1} = obj;
+ − end
+ −