Mercurial > hg > ltpda
annotate m-toolbox/classes/@LTPDAworkbench/fromXML.m @ 0:f0afece42f48
Import.
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Wed, 23 Nov 2011 19:22:13 +0100 |
parents | |
children |
rev | line source |
---|---|
0 | 1 % FROMXML creates a workbench from the saved XML (.LWB) file. |
2 % | |
3 % CALL: wb = fromXML(wb, fname); | |
4 % | |
5 % M Hewitson 23-11-08 | |
6 % | |
7 % $Id: fromXML.m,v 1.2 2010/08/06 19:10:49 ingo Exp $ | |
8 % | |
9 function wb = fromXML(wb, fname) | |
10 | |
11 wb = LTPDAworkbench(); | |
12 awtinvoke(wb.mp, 'loadFromXML', fname); | |
13 | |
14 end |