comparison m-toolbox/classes/@ltpda_uoh/fromLISO.m @ 0:f0afece42f48

Import.
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Wed, 23 Nov 2011 19:22:13 +0100
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:f0afece42f48
1 % FROMLISO Default method to read LISO files
2 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3 %
4 % FUNCTION: fromLISO
5 %
6 % DESCRIPTION: If a class can not handle a LISO file then throw always an error.
7 % If a class can handle thie file then overload this method.
8 %
9 % CALL: f = fromLISO(f, pli)
10 %
11 % PARAMETER: pzm: Empty ltpda_uoh-object
12 % pli: input plist (must contain the filename)
13 %
14 % VERSION: $Id: fromLISO.m,v 1.2 2010/10/29 12:43:26 ingo Exp $
15 %
16 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
17
18 function obj = fromLISO(obj, pli)
19
20 error('### It is not possible to convert a LISO file into a %s-object', class(obj));
21
22 end