Mercurial > hg > ltpda
view m-toolbox/classes/@specwin/copy.m @ 41:6def6533cb16 database-connection-manager
Report authentication errors to user
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Mon, 05 Dec 2011 18:04:34 +0100 |
parents | f0afece42f48 |
children |
line wrap: on
line source
% COPY makes a (deep) copy of the input specwin objects. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % DESCRIPTION: COPY makes a deep copy of the input specwin objects. % % CALL: b = copy(a, flag) % % INPUTS: a - input specwin object % flag - true: make a deep copy, false: return copies of handles % % OUTPUTS: b - copy of inputs % % VERSION: $Id: copy.m,v 1.14 2011/05/23 20:28:34 mauro Exp $ % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% function varargout = copy(old, deepcopy) if deepcopy % Loop over input specwin objects new = specwin.newarray(size(old)); for kk = 1:numel(old) new(kk).type = old(kk).type; new(kk).alpha = old(kk).alpha; new(kk).psll = old(kk).psll; new(kk).rov = old(kk).rov; new(kk).nenbw = old(kk).nenbw; new(kk).w3db = old(kk).w3db; new(kk).flatness = old(kk).flatness; new(kk).len = old(kk).len; new(kk).levelorder = old(kk).levelorder; new(kk).skip = old(kk).skip; end else new = old; end varargout{1} = new; end