FROMDATAFILE Default method to convert a data-file into a ltpda_uoh-object %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% FUNCTION: fromDatafile DESCRIPTION: Default method to convert a data-file into a ltpda_uoh-object CALL: obj = fromDataInMAT(obj, pli) PARAMETER: obj: empty ltpda_uoh-object pli: plist-object (must contain the filename) VERSION: $Id: fromDatafile.m,v 1.1 2008/08/22 14:17:26 ingo Exp $ HISTORY: 22-03-2008 M Hewitson Creation %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
0001 % FROMDATAFILE Default method to convert a data-file into a ltpda_uoh-object 0002 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 0003 % 0004 % FUNCTION: fromDatafile 0005 % 0006 % DESCRIPTION: Default method to convert a data-file into a ltpda_uoh-object 0007 % 0008 % CALL: obj = fromDataInMAT(obj, pli) 0009 % 0010 % PARAMETER: obj: empty ltpda_uoh-object 0011 % pli: plist-object (must contain the filename) 0012 % 0013 % VERSION: $Id: fromDatafile.m,v 1.1 2008/08/22 14:17:26 ingo Exp $ 0014 % 0015 % HISTORY: 22-03-2008 M Hewitson 0016 % Creation 0017 % 0018 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 0019 0020 function obj = fromDatafile(obj, pli) 0021 0022 error('### It is not possible to convert this data file into a %s-object', class(obj)); 0023 0024 end