view 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 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