view m-toolbox/classes/@unit/copy.m @ 44:409a22968d5e
default
Add unit tests
author
Daniele Nicolodi <nicolodi@science.unitn.it>
date
Tue, 06 Dec 2011 18:42:11 +0100 (2011-12-06)
parents
f0afece42f48
children
line source
+ − % COPY makes a (deep) copy of the input unit objects.
+ − %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+ − %
+ − % DESCRIPTION: COPY makes a deep copy of the input unit objects.
+ − %
+ − % CALL: b = copy(a, flag)
+ − %
+ − % INPUTS: a - input unit 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.7 2010/06/25 15:11:48 ingo Exp $
+ − %
+ − %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+ −
+ − function varargout = copy(old, deepcopy)
+ −
+ − if deepcopy
+ − % Loop over input unit objects
+ − new = unit.newarray(size(old));
+ − % new = copy@ltpda_nuo(new, old, 1);
+ −
+ − for kk=1:numel(old)
+ − new(kk).strs = old(kk).strs;
+ − new(kk).exps = old(kk).exps;
+ − new(kk).vals = old(kk).vals;
+ − end
+ − else
+ − new = old;
+ − end
+ −
+ − varargout{1} = new;
+ − end
+ −