Mercurial > hg > ltpda
view m-toolbox/classes/@tsdata/saveobj.m @ 52:daf4eab1a51e database-connection-manager tip
Fix. Default password should be [] not an empty string
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Wed, 07 Dec 2011 17:29:47 +0100 |
parents | f0afece42f48 |
children |
line wrap: on
line source
% LOADOBJ is called by the load function for user objects. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % DESCRIPTION: LOADOBJ is called by the load function for user objects. % When an object is loaded from a MAT-file, the load function calls % the loadobj method if the structure of the object is changed. % % VERSION: $Id: saveobj.m,v 1.1 2011/10/05 09:52:06 ingo Exp $ % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% function objs = saveobj(objs) % ATTENTION: We keep the meaning of t0 for backwars compatibility. % This means % - before saving, t0 = t0 + toffset % - after loading, t0 = t0 - toffset for jj=1:numel(objs) objs(jj) = objs(jj).setT0(objs(jj).t0 + objs(jj).toffset/1e3); end end