Mercurial > hg > ltpda
diff m-toolbox/classes/@stattest/update_struct.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 diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/m-toolbox/classes/@stattest/update_struct.m Wed Nov 23 19:22:13 2011 +0100 @@ -0,0 +1,21 @@ +% UPDATE_STRUCT update the input structure to the current ltpda version +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% +% FUNCTION: update_struct +% +% DESCRIPTION: UPDATE_STRUCT update the input structure to the current +% ltpda version +% +% CALL: obj_struct = update_struct(obj_struct, version_str); +% +% VERSION: $Id: update_struct.m,v 1.1 2010/12/20 12:50:15 hewitson Exp $ +% +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +function varargout = update_struct(varargin) + + obj_struct = varargin{1}; + + varargout{1} = obj_struct; +end +