Home > classes > @timespan > copy.m

copy

PURPOSE ^

COPY Make copy of time objects depending of the second input

SYNOPSIS ^

function varargout = copy(old, deepcopy)

DESCRIPTION ^

 COPY Make copy of time objects depending of the second input
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

 DESCRIPTION: COPY Make copy of time objects depending of the second input

 CALL:        objs = copy(objs, [1,0]);

 M-FILE INFO: Get information about this methods by calling
              >> timespan.getInfo('copy')

 VERSION:     $Id: copy.m,v 1.6 2008/09/03 16:29:33 hewitson Exp $

 HISTORY:     11-07-2008 Diepholz
                 Creation

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 % COPY Make copy of time objects depending of the second input
0002 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
0003 %
0004 % DESCRIPTION: COPY Make copy of time objects depending of the second input
0005 %
0006 % CALL:        objs = copy(objs, [1,0]);
0007 %
0008 % M-FILE INFO: Get information about this methods by calling
0009 %              >> timespan.getInfo('copy')
0010 %
0011 % VERSION:     $Id: copy.m,v 1.6 2008/09/03 16:29:33 hewitson Exp $
0012 %
0013 % HISTORY:     11-07-2008 Diepholz
0014 %                 Creation
0015 %
0016 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
0017 
0018 function varargout = copy(old, deepcopy)
0019 
0020 
0021   if deepcopy
0022     prov = provenance;
0023     t0   = time;
0024     s = size(old);
0025     obj(s(1),s(2)) = timespan;
0026     for kk=1:numel(old)
0027       utils.helper.msg(utils.const.msg.OPROC2, 'copying timespan');
0028       obj(kk).startT     = copy(old(kk).startT, 1);
0029       obj(kk).endT       = copy(old(kk).endT, 1);
0030       obj(kk).timeformat = old(kk).timeformat;
0031       obj(kk).timezone   = old(kk).timezone;
0032       obj(kk).interval   = old(kk).interval;
0033       obj(kk).hist       = old(kk).hist;
0034       obj(kk).name       = old(kk).name;
0035       %%% reset created time
0036       obj(kk).created    = t0;
0037       obj(kk).creator    = prov;
0038       obj(kk).version    = timespan.VEROUT;
0039     end
0040   else
0041     obj = old;
0042   end
0043   varargout{1} = obj;
0044 end
0045

Generated on Mon 08-Sep-2008 13:18:47 by m2html © 2003