comparison m-toolbox/test/test_ao_provenance.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 function test_ao_provenance()
2
3 % TEST_AO_PROVENANCE tests the provenance propery of AO class, especially
4 % for reading/writing XML.
5 %
6 % M Hewitson 07-05-07
7 %
8 % $Id: test_ao_provenance.m,v 1.2 2008/09/19 14:03:50 ingo Exp $
9 %
10
11 a = ao('data1.txt')
12
13 save(a, 'data1.xml');
14
15 b = ao('data1.xml')
16
17 c = b./a
18
19 iplot(c)
20
21
22 % END