view m-toolbox/test/test_ao_provenance.m @ 48:16aa66670d74
database-connection-manager
Fix LTPDA Preferences tooltip
author
Daniele Nicolodi <nicolodi@science.unitn.it>
date
Tue, 06 Dec 2011 19:07:27 +0100 (2011-12-06)
parents
f0afece42f48
children
line source
+ − function test_ao_provenance()
+ −
+ − % TEST_AO_PROVENANCE tests the provenance propery of AO class, especially
+ − % for reading/writing XML.
+ − %
+ − % M Hewitson 07-05-07
+ − %
+ − % $Id: test_ao_provenance.m,v 1.2 2008/09/19 14:03:50 ingo Exp $
+ − %
+ −
+ − a = ao('data1.txt')
+ −
+ − save(a, 'data1.xml');
+ −
+ − b = ao('data1.xml')
+ −
+ − c = b./a
+ −
+ − iplot(c)
+ −
+ −
+ − % END