view m-toolbox/classes/@ltpda_uoh/fromLISO.m @ 31:a26669b59d7e
database-connection-manager
Update LTPDAworkbench
author
Daniele Nicolodi <nicolodi@science.unitn.it>
date
Mon, 05 Dec 2011 16:20:06 +0100 (2011-12-05)
parents
f0afece42f48
children
line source
+ − % 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.2 2010/10/29 12:43:26 ingo Exp $
+ − %
+ − %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+ −
+ − function obj = fromLISO(obj, pli)
+ −
+ − error('### It is not possible to convert a LISO file into a %s-object', class(obj));
+ −
+ − end