diff 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
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/m-toolbox/test/test_ao_provenance.m	Wed Nov 23 19:22:13 2011 +0100
@@ -0,0 +1,22 @@
+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
\ No newline at end of file