FROMLISO Default method to read LISO files %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% FUNCTION: fromLISO DESCRIPTION: If a class can not handle a LISO file then throw always an error. If a class can handle thie file then overload this method. CALL: f = fromLISO(f, pli) PARAMETER: pzm: Empty ltpda_uoh-object pli: input plist (must contain the filename) VERSION: $Id: fromLISO.m,v 1.1 2008/08/22 14:17:26 ingo Exp $ HISTORY: 21-08-2008 Diepholz Creation %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
0001 % FROMLISO Default method to read LISO files 0002 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 0003 % 0004 % FUNCTION: fromLISO 0005 % 0006 % DESCRIPTION: If a class can not handle a LISO file then throw always an error. 0007 % If a class can handle thie file then overload this method. 0008 % 0009 % CALL: f = fromLISO(f, pli) 0010 % 0011 % PARAMETER: pzm: Empty ltpda_uoh-object 0012 % pli: input plist (must contain the filename) 0013 % 0014 % VERSION: $Id: fromLISO.m,v 1.1 2008/08/22 14:17:26 ingo Exp $ 0015 % 0016 % HISTORY: 21-08-2008 Diepholz 0017 % Creation 0018 % 0019 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 0020 0021 function obj = fromLISO(obj, pli) 0022 0023 error('### It is not possible to convert a LISO file into a %s-object', class(obj)); 0024 0025 end