view m-toolbox/classes/@minfo/copy.m @ 25:79dc7091dbbc database-connection-manager

Update tests
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 minfo objects.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% DESCRIPTION: COPY makes a deep copy of the input minfo objects.
%
% CALL:        b = copy(a, flag)
%
% INPUTS:      a    - input minfo 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 2011/01/04 19:03:18 ingo Exp $
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

function varargout = copy(old, deepcopy)
  
  if deepcopy
    % Loop over input minfo objects
    new = minfo.newarray(size(old));
%     new = copy@ltpda_nuo(new, old, 1);
    
    for kk=1:numel(old)
      new(kk).mname = old(kk).mname;
      new(kk).mclass = old(kk).mclass;
      new(kk).mpackage = old(kk).mpackage;
      new(kk).mcategory = old(kk).mcategory;
      new(kk).mversion = old(kk).mversion;
      new(kk).description = old(kk).description;
      new(kk).children = old(kk).children;
      new(kk).sets = old(kk).sets;
      new(kk).plists = old(kk).plists;
      new(kk).argsmin = old(kk).argsmin;
      new(kk).argsmax = old(kk).argsmax;
      new(kk).outmin = old(kk).outmin;
      new(kk).outmax = old(kk).outmax;
      new(kk).modifier = old(kk).modifier;
    end
  else
    new = old;
  end
  
  varargout{1} = new;
end