SETCREATOR Set the property 'creator' %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% DESCRIPTION: SETCREATOR Set the property 'creator' CALL: obj = obj.setCreator('unknown'); obj = setCreator(obj, 'unknown'); INPUTS: obj - is a general object VERSION: $Id: setCreator.m,v 1.2 2008/07/18 11:13:34 ingo Exp $ HISTORY: 16-07-2008 Diepholz Creation %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
0001 % SETCREATOR Set the property 'creator' 0002 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 0003 % 0004 % DESCRIPTION: SETCREATOR Set the property 'creator' 0005 % 0006 % CALL: obj = obj.setCreator('unknown'); 0007 % obj = setCreator(obj, 'unknown'); 0008 % 0009 % INPUTS: obj - is a general object 0010 % 0011 % VERSION: $Id: setCreator.m,v 1.2 2008/07/18 11:13:34 ingo Exp $ 0012 % 0013 % HISTORY: 16-07-2008 Diepholz 0014 % Creation 0015 % 0016 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 0017 0018 function obj = setCreator(obj, val) 0019 %%% decide whether we modify the ltpda_uo-object, or create a new one. 0020 obj = copy(obj, nargout); 0021 0022 %%% set 'creator' 0023 obj.creator = val; 0024 end