view m-toolbox/classes/@param/setKeyVal.m @ 0:f0afece42f48

Import.
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Wed, 23 Nov 2011 19:22:13 +0100
parents
children
line wrap: on
line source

% SETKEYVAL Set the properties 'key' and 'val'
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% DESCRIPTION: Set the properties 'key' and 'val'
%
% CALL:        obj.setKeyVal('new key', 'new val');
%              obj = setKeyVal(obj, 'new key', 'new val');
%
% VERSION:     $Id: setKeyVal.m,v 1.8 2011/02/18 16:48:53 ingo Exp $
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

function varargout = setKeyVal(varargin)
  
  %%% decide whether we modify the first plist, or create a new one.
  varargin{1} = copy(varargin{1}, nargout);
  
  varargin{1}.key = varargin{2};
  varargin{1}.val = varargin{3};
  varargout{1} = varargin{1};
  
end