% COPY makes a (deep) copy of the input miir objects.%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% DESCRIPTION: COPY makes a deep copy of the input miir objects.%% CALL: b = copy(a, flag)%% INPUTS: a - input miir 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.16 2010/06/25 15:11:47 ingo Exp $%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%function varargout = copy(old, deepcopy) if deepcopy % Loop over input miir objects new = miir.newarray(size(old)); obj = copy@ltpda_filter(new, old, 1); for kk=1:numel(old) obj(kk).b = old(kk).b; obj(kk).histin = old(kk).histin; end else obj = old; end varargout{1} = obj;end