Mercurial > hg > ltpda
view m-toolbox/classes/@plotter/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 plotter objects. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % DESCRIPTION: COPY makes a deep copy of the input plotter objects. % % CALL: b = copy(a, flag) % % INPUTS: a - input plotter 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.1 2010/12/08 15:46:29 hewitson Exp $ % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% function varargout = copy(old, deepcopy) if deepcopy % Loop over input minfo objects new = plotter.newarray(size(old)); % new = copy@ltpda_nuo(new, old, 1); for kk=1:numel(old) new(kk).data = copy(old(kk).data, 1); end else new = old; end varargout{1} = new; end